Exemplo n.º 1
0
 public Rover(int x, int y, Orientation orientation)
 {
     X = x;
     Y = y;
     Orientation = orientation;
     Commands = new Queue<Command>();
 }
Exemplo n.º 2
0
 public Location(Position position, Orientation orientation)
 {
     _position = position;
     _orientation = orientation;
 }