Exemplo n.º 1
0
        public void MoveRight()
        {
            if (_current.CanMoveRight(_grid))
            {
                _current.MoveRight();
                _lastWasRotate   = false;
                _lastWasMoveDown = false;

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