before remove validation board
This commit is contained in:
7
PathFinding/IPlanarCollection.cs
Normal file
7
PathFinding/IPlanarCollection.cs
Normal file
@@ -0,0 +1,7 @@
|
||||
namespace PathFinding
|
||||
{
|
||||
interface IPlanarCollection<T>
|
||||
{
|
||||
T this[int x, int y] { get; set; }
|
||||
}
|
||||
}
|
||||
10
PathFinding/PathFinder2D.cs
Normal file
10
PathFinding/PathFinder2D.cs
Normal file
@@ -0,0 +1,10 @@
|
||||
|
||||
namespace PathFinding
|
||||
{
|
||||
public class PathFinder2D
|
||||
{
|
||||
public PathFinder2D()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
7
PathFinding/PathFinding.csproj
Normal file
7
PathFinding/PathFinding.csproj
Normal file
@@ -0,0 +1,7 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net5.0</TargetFramework>
|
||||
</PropertyGroup>
|
||||
|
||||
</Project>
|
||||
Reference in New Issue
Block a user