Example #1
0
 private static void CreateNxMGrid_And_PlaceRover(Direction direction, int positionX, int positionY, int sizeX, int sizeY)
 {
     Rover = MarsRover.Place(
         direction,
         BoundedPosition.Create(
             Bounds.Create(sizeX, sizeY),
             Position.SepecificCoord(positionX, positionY)));
 }