Files
Shogi/PathFinding/IPlanarCollection.cs
2021-05-08 10:26:04 -05:00

11 lines
232 B
C#

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