예제 #1
0
파일: Engine.cs 프로젝트: htoomik/aoc2018
 public Route FindShortestRoute(Unit unit, Coords target)
 {
     return(PathFinder.FindShortestRoute(unit.GetCoords(), target, _walls, Units));
 }
예제 #2
0
파일: Engine.cs 프로젝트: htoomik/aoc2018
 private bool IsFree(Coords coords)
 {
     return(PathFinder.IsFree(_walls, Units, coords));
 }