// ReSharper disable CheckNamespace -- matches Stardew Valley's code
using System.Collections;
using System.Collections.Generic;
using System.Collections.ObjectModel;
namespace Netcode
{
/// A simplified version of Stardew Valley's Netcode.NetCollection for unit testing.
public class NetCollection : Collection, IList, ICollection, IEnumerable, IEnumerable { }
}