diff options
| author | manzerbredes <loic.guegan_secondary@yahoo.fr> | 2015-05-02 19:26:01 +0200 |
|---|---|---|
| committer | manzerbredes <loic.guegan_secondary@yahoo.fr> | 2015-05-02 19:26:01 +0200 |
| commit | 36d033caeebd8ccbddf711825a5a96e3930438be (patch) | |
| tree | 07fb279618fdae06aaf148368b607a78ac6823b3 /src/Model/Game.hpp | |
| parent | 27d646af15bc9147a141aced8cebd30668de9a8e (diff) | |
Make clean code
Diffstat (limited to 'src/Model/Game.hpp')
| -rw-r--r-- | src/Model/Game.hpp | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/src/Model/Game.hpp b/src/Model/Game.hpp index c1c636a..ee3a6a9 100644 --- a/src/Model/Game.hpp +++ b/src/Model/Game.hpp @@ -8,24 +8,18 @@ * Date : 29/04/2015 */ #include <iostream> -#include <cstdlib> #include <string> -#include "./Elements/StringElement.hpp" #include "Grid.hpp" class Game { private: - Grid *m_grid; + Grid m_grid; public: Game(); ~Game(); - void pop(); - void showGrid(); - void swipeRight(); - bool isOver(); }; #endif |
