This commit is contained in:
2021-03-01 20:55:37 -06:00
parent f55716d2ec
commit 3da187be17
5 changed files with 154 additions and 109 deletions

View File

@@ -4,7 +4,7 @@ namespace PathFinding
{
public interface IPlanarCollection<T> : IEnumerable<T>
{
T this[int x, int y] { get; set; }
T this[float x, float y] { get; set; }
int GetLength(int dimension);
}
}