Files
robot_intelligence_final_pr…/ConsoleApp/IPathPlanner.cs

11 lines
214 B
C#

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