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; }
}
}

View File

@@ -0,0 +1,10 @@
namespace PathFinding
{
public class PathFinder2D
{
public PathFinder2D()
{
}
}
}

View File

@@ -0,0 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net5.0</TargetFramework>
</PropertyGroup>
</Project>