blob: 5cbc21b2fe86ae23bf0f991eb2a0c7df16d13d6c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef DEF_MODELCONSTANTS
#define DEF_MODELCONSTANTS
/* ModelConstants.hpp
* Constains constants and enums used in the whole model
* Creators : krilius, manzerbredes
* Date : 29/04/2015 */
enum Direction { UP, DOWN, LEFT, RIGHT };
typedef enum Direction Direction;
#endif
|