First main created

This commit is contained in:
krilius 2015-04-29 15:42:41 +04:00
parent 08113f5b6d
commit 3840053da7
7 changed files with 112 additions and 694 deletions

View file

@ -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