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