public Route FindShortestRoute(Unit unit, Coords target) { return(PathFinder.FindShortestRoute(unit.GetCoords(), target, _walls, Units)); }
private bool IsFree(Coords coords) { return(PathFinder.IsFree(_walls, Units, coords)); }