Add score and nb move(s) support

This commit is contained in:
manzerbredes 2015-05-03 02:02:22 +02:00
parent 30f603ecd3
commit 9977050e6e
6 changed files with 46 additions and 3 deletions

View file

@ -17,7 +17,8 @@ class Game
{
private:
Grid m_grid;
int m_score;
int m_nbMove;
public:
Game();
~Game();
@ -26,6 +27,9 @@ class Game
void coutGrid();
void popRandomNumber();
bool isOver();
int getScore();
int getNbMove();
};
#endif