Files
Shogi/PathFinding/IPlanarCollection.cs

11 lines
202 B
C#

using System.Collections.Generic;
namespace PathFinding
{
public interface IPlanarCollection<T> : IEnumerable<T>
{
T this[int x, int y] { get; set; }
int GetLength(int dimension);
}
}