19 lines
243 B
C++
19 lines
243 B
C++
![]() |
#ifndef DEF_CELL
|
||
|
#define DEF_CELL
|
||
|
|
||
|
/* Cell.cpp
|
||
|
* 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>
|
||
|
|
||
|
class Cell
|
||
|
{
|
||
|
};
|
||
|
|
||
|
#endif
|
||
|
|