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