コード例 #1
0
 public void TurnLeft(Rover rover)
 {
     rover.Direction      = Direction.West;
     rover.RoverDirection = new RoverWest();
 }
コード例 #2
0
 public void TurnLeft(Rover rover)
 {
     rover.Direction      = Direction.North;
     rover.RoverDirection = new RoverNorth();
 }
コード例 #3
0
 public void TurnRight(Rover rover)
 {
     rover.Direction      = Direction.East;
     rover.RoverDirection = new RoverEast();
 }
コード例 #4
0
 public void TurnRight(Rover rover)
 {
     rover.Direction      = Direction.South;
     rover.RoverDirection = new RoverSouth();
 }