diff options
Diffstat (limited to 'src/Model/Cell.hpp')
| -rw-r--r-- | src/Model/Cell.hpp | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/src/Model/Cell.hpp b/src/Model/Cell.hpp index 888c63c..7775bf5 100644 --- a/src/Model/Cell.hpp +++ b/src/Model/Cell.hpp @@ -1,17 +1,28 @@ #ifndef DEF_CELL #define DEF_CELL -/* Cell.cpp +/* Cell.h * Defines the class Cell * A cell represents a cell in the grid * Creators : krilius, manzerbredes * Date : 29/04/2015 */ #include <iostream> -#include <SFML/SFML.h> +#include <string> class Cell { + private: + std::string m_value; + + public: + Cell(); + Cell(std::string value); + ~Cell(); + + // Describes the cell in a terminal + std::string description(); + }; #endif |
