This commit is contained in:
2020-12-15 15:46:45 -07:00
parent 00444fbba9
commit 45eca3b572
16 changed files with 146 additions and 40 deletions

View File

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