Move pop number to game class

This commit is contained in:
manzerbredes 2015-05-03 01:14:14 +02:00
parent cfc5d425f6
commit 60cb4a1e32
2 changed files with 3 additions and 3 deletions

View file

@ -35,9 +35,6 @@ void ConsoleController::run()
//Apply move
bool moveDone=m_game.swipe(keyPress);
//Pop a random number on the grid
if(moveDone)
m_game.popRandomNumber();
//Cout grid
m_game.coutGrid();

View file

@ -30,6 +30,9 @@ bool Game::swipe(kbdh::Direction direction){
break;
}
if(moveDone)
this->popRandomNumber();
return moveDone;
}