Optimal path for square map

This commit is contained in:
2020-12-14 18:24:10 -07:00
parent 80ea690330
commit 5bb82f7579
11 changed files with 209 additions and 79 deletions

View File

@@ -1,4 +1,11 @@
$HEADER$namespace $NAMESPACE$
using System.Collections.Generic;
using ConsoleApp.Maps;
namespace ConsoleApp
{
public interface $INTERFACE$ {$END$}
public interface IPathPlanner
{
Queue<ICell> GenerateOptimalSquarePath(SquareMap map, IVehicle vehicle);
}
}