Exemplo n.º 1
0
        public void RotateRight()
        {
            if (_current.CanRotateRight(_grid))
            {
                _current.RotateRight();
                _lastWasRotate   = true;
                _lastWasMoveDown = false;

                if (_lockDelay)
                {
                    _moveCount += 1;
                }
            }
        }