Exemplo n.º 1
0
        private void RemoveFullRows()
        {
            int removedRows = _gameBoard.RemoveFullRows();

            if (removedRows > 0)
            {
                _score += (int)Math.Pow(10, removedRows);
            }
        }