Done for the night

Need to change planning algo for square to go right to left.
This commit is contained in:
2020-12-15 00:09:29 -07:00
parent 5bb82f7579
commit 257aaa331f
13 changed files with 119 additions and 67 deletions

View File

@@ -0,0 +1,12 @@
using System.Collections.Generic;
using ConsoleApp.Maps;
namespace ConsoleApp.PathPlanners
{
public interface IPathPlanner
{
Queue<ICell> GenerateOptimalSquarePath(SquareMap map, IVehicle vehicle);
Queue<ICell> GenerateOptimalHexPath(HexMap hexMap, IVehicle vehicle);
}
}