2P11/src/Model/Cell.hpp

19 lines
243 B
C++
Raw Normal View History

2015-04-29 15:40:08 +04:00
#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