From 3840053da7d3343eeb0c60854f20bcf72c58c45d Mon Sep 17 00:00:00 2001 From: krilius Date: Wed, 29 Apr 2015 15:42:41 +0400 Subject: First main created --- src/Model/Grid.hpp | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) (limited to 'src/Model/Grid.hpp') diff --git a/src/Model/Grid.hpp b/src/Model/Grid.hpp index e69de29..a9c6c86 100644 --- a/src/Model/Grid.hpp +++ b/src/Model/Grid.hpp @@ -0,0 +1,27 @@ +#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 description(); +}; + +#endif + -- cgit v1.2.3