Ejemplo n.º 1
0
 private void MaybeMoveRobot(int x, int y)
 {
     if (_RoomHandler.CheckBoundaries(x, y))
     {
         _Robot.X = x;
         _Robot.Y = y;
     }
 }