Files
Shogi/PathFinding/IPlanarCollection.cs
2021-03-01 20:55:37 -06:00

11 lines
206 B
C#

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