コード例 #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));
 }