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

12 lines
306 B
C#

using System.Collections.Generic;
using ConsoleApp.Maps;
namespace ConsoleApp.PathPlanners
{
public interface IPathPlanner
{
Queue<ICell> GenerateOptimalSquarePath(ISquareMap map, IVehicle vehicle);
Queue<ICell> GenerateOptimalHexPath(HexMap hexMap, IVehicle vehicle);
}
}