Files
Shogi/PathFinding/IPlanarCollection.cs
2021-08-01 17:32:43 -05:00

12 lines
242 B
C#

using System.Collections.Generic;
using System.Numerics;
namespace PathFinding
{
public interface IPlanarCollection<T> where T : IPlanarElement
{
T? this[Vector2 vector] { get; set; }
T? this[int x, int y] { get; set; }
}
}