Created basic classes

This commit is contained in:
krilius 2015-04-29 15:40:08 +04:00
parent f6094f0372
commit 08113f5b6d
3 changed files with 18 additions and 0 deletions

18
src/Model/Cell.hpp Normal file
View 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
View file