Пример #1
0
 private void TryMoveRight(Shape shape)
 {
     if (_gameBoard.CanMoveRight(shape))
     {
         shape.X++;
     }
 }