summaryrefslogtreecommitdiff
path: root/src/Model/Grid.hpp
diff options
context:
space:
mode:
authormanzerbredes <loic.guegan_secondary@yahoo.fr>2015-05-01 13:18:26 +0200
committermanzerbredes <loic.guegan_secondary@yahoo.fr>2015-05-01 13:18:26 +0200
commit048f1e17b752d2af53db82c1861002283fc300fa (patch)
treeaf7e01538efa1304e53ed89786ff7afeadc3a325 /src/Model/Grid.hpp
parent672358a947ff4bff7e0b4e0afaa90c30480ce65b (diff)
Add some newers things :
-Change helper ModelConstants to Keyboard -Now helpers is in folder Helpers -Change direction name to use CamelCase
Diffstat (limited to 'src/Model/Grid.hpp')
-rw-r--r--src/Model/Grid.hpp8
1 files changed, 1 insertions, 7 deletions
diff --git a/src/Model/Grid.hpp b/src/Model/Grid.hpp
index 2a28559..c431cb3 100644
--- a/src/Model/Grid.hpp
+++ b/src/Model/Grid.hpp
@@ -10,7 +10,7 @@
#include <iostream>
#include <vector>
-#include "ModelConstants.hpp"
+//#include "ModelConstants.hpp"
#include "Cell.hpp"
class Grid
@@ -19,11 +19,6 @@ class Grid
int m_size;
std::vector<std::vector<Cell*> > m_table;
- void moveUp();
- void moveDown();
- void moveLeft();
- void moveRight();
-
public:
Grid(int size);
~Grid();
@@ -33,7 +28,6 @@ class Grid
bool gridIsFull();
void setCell(int i, int j, Cell * cell);
- void move(Direction direction);
};