Organize all the code

This commit is contained in:
manzerbredes 2015-05-03 09:57:31 +02:00
parent af7f2fc870
commit 4cc6c6596b
7 changed files with 57 additions and 33 deletions

View file

@ -16,18 +16,23 @@
class Game
{
private:
//Members
Grid m_grid;
int m_score;
int m_nbMove;
public:
//Constructor and Destructor
Game();
~Game();
//Helpers
bool swipe(kbdh::Direction direction);
void coutGrid();
void popRandomNumber();
bool isOver();
//Getters and Setters
int getScore();
int getNbMove();
};