mirror of
https://github.com/Stone-Red-Code/Maze.git
synced 2026-09-06 23:41:12 +02:00
Initial commit
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
using Maze.Nodes;
|
||||
|
||||
namespace Maze.Solvers;
|
||||
|
||||
internal interface IMazeSolver<T> where T : BaseMazeNode<T>, new()
|
||||
{
|
||||
public List<T> Solve(T node, T[,] maze, GraphicsMode graphicsMode = GraphicsMode.None);
|
||||
}
|
||||
Reference in New Issue
Block a user