summaryrefslogtreecommitdiff
path: root/src/Model/Grid.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/Model/Grid.hpp')
-rw-r--r--src/Model/Grid.hpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/Model/Grid.hpp b/src/Model/Grid.hpp
index 304e436..e3bc888 100644
--- a/src/Model/Grid.hpp
+++ b/src/Model/Grid.hpp
@@ -11,17 +11,17 @@
#include <vector>
#include "Cell.hpp"
-/*
+
class Grid
{
private:
- std::vector<std::vector<Cell*>> m_table;
+ std::vector<std::vector<Cell*> > m_table;
public:
Grid(int size);
~Grid();
- void description();
+ void afficher();
};
-*/
+
#endif