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