before remove validation board

This commit is contained in:
2021-02-25 19:55:43 -06:00
parent f644795cd3
commit 640db4f4a2
8 changed files with 172 additions and 58 deletions

View File

@@ -0,0 +1,7 @@
namespace PathFinding
{
interface IPlanarCollection<T>
{
T this[int x, int y] { get; set; }
}
}