blob: f7fb961773b712da62dd84bdb80c21d3faf71b69 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#nullable disable
// ReSharper disable CheckNamespace -- matches Stardew Valley's code
using System.Collections;
using System.Collections.Generic;
namespace Netcode
{
/// <summary>A simplified version of Stardew Valley's <c>Netcode.NetObjectList</c> for unit testing.</summary>
public class NetList<T> : List<T>, IList<T>, ICollection<T>, IEnumerable<T>, IEnumerable { }
}
|