#ifndef DEF_GRID #define DEF_GRID /* Grid.h * Defines the class Grid * A grid contains a table of cells the game will be set on * Creators : krilius, manzerbredes * Date : 29/04/2015 */ #include #include #include "Cell.hpp" class Grid { private: std::vector > m_table; public: Grid(int size); ~Grid(); void afficher(); }; #endif