Fix whitespace

This commit is contained in:
manzerbredes 2015-04-30 09:13:23 +02:00
parent 4b5f429c0d
commit a2ed149069

View file

@ -15,11 +15,11 @@ void Game::play()
while(!m_grid->gridIsFull())
{
m_grid->show();
pop();
std::cout << std::endl;
}
m_grid->show();
}
@ -32,23 +32,23 @@ void Game::showGrid()
void Game::pop()
{
bool cellChosen = false;
int i;
int j;
while(!cellChosen)
{
i = rand() % 4;
j = rand() % 4;
if (m_grid->isEmpty(i,j))
cellChosen = true;
}
m_grid->setCell(i, j, new Cell("2"));
}
bool Game::isOver()
{
return m_grid->gridIsFull();
}
}