Ejemplo n.º 1
0
 public void Rotate(Rotation rotation)
 {
     EnsureIntialized();
     _commands.Enqueue(() =>
     {
         //TODO: Replace this logic by smart algorithm
         while (_machine.Rotation != rotation)
         {
             _machine.TurnRight();
         }
     });
 }