summaryrefslogtreecommitdiff
path: root/src/Model/Game.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/Model/Game.hpp')
-rw-r--r--src/Model/Game.hpp8
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