Done for the night
Need to change planning algo for square to go right to left.
This commit is contained in:
12
ConsoleApp/PathPlanners/IPathPlanner.cs
Normal file
12
ConsoleApp/PathPlanners/IPathPlanner.cs
Normal 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);
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user