Files
robot_intelligence_final_pr…/ConsoleApp/PathPlanners/IPathPlanner.cs
2020-12-15 15:46:45 -07:00

13 lines
333 B
C#

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(IHexMap hexMap, IVehicle vehicle);
}
}