Files
Shogi/PathFinding/IPlanarCollection.cs
2021-03-04 20:35:23 -06:00

11 lines
231 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);
}
}