Ejemplo n.º 1
0
 private void TryMoveLeft(Shape shape)
 {
     if (_gameBoard.CanMoveLeft(shape))
     {
         shape.X--;
     }
 }