Esempio n. 1
0
 public Position(MapCoordinate coordinate, string history)
 {
     Coordinate = coordinate;
     History    = history;
 }
Esempio n. 2
0
 public int GetManhattanDistanceTo(MapCoordinate target)
 {
     return(Math.Abs(X - target.X) + Math.Abs(target.Y - Y));
 }