예제 #1
0
 public Rover(Grid grid)
 {
     State = new NorthFacingRover(grid, 0, 0, this);
 }
예제 #2
0
 public WestFacingRover(RoverPosition state) : this(state.Grid, state.CurrentX, state.CurrentY, state.Rover)
 {
 }