summaryrefslogtreecommitdiff
path: root/src/Model/Cell.hpp
blob: 888c63cf15edca165a59e7a8d83aeacd62a7a9d6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#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