First main created
This commit is contained in:
parent
08113f5b6d
commit
3840053da7
7 changed files with 112 additions and 694 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue