blob: c24c1ba0a2793a5bbbd95c719e14fd6cd76f9e94 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#ifndef DEF_MODELCONSTANTS
#define DEF_MODELCONSTANTS
/* ModelConstants.hpp
* Constains constants and enums used in the whole model
* Creators : krilius, manzerbredes
* Date : 29/04/2015 */
namespace kbdh {
//Key arrow
enum Direction { Up, Down, Left, Right };
//Key arrow typedef
typedef enum Direction Direction;
}
#endif
|