Created basic classes
This commit is contained in:
parent
f6094f0372
commit
08113f5b6d
3 changed files with 18 additions and 0 deletions
18
src/Model/Cell.hpp
Normal file
18
src/Model/Cell.hpp
Normal file
|
@ -0,0 +1,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
|
||||||
|
|
0
src/Model/Grid.hpp
Normal file
0
src/Model/Grid.hpp
Normal file
Loading…
Add table
Reference in a new issue