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