Files
Shogi/PathFinding/IPlanarCollection.cs

8 lines
109 B
C#

namespace PathFinding
{
interface IPlanarCollection<T>
{
T this[int x, int y] { get; set; }
}
}