first version of the controller

This commit is contained in:
krilius 2015-04-30 08:48:29 +04:00
parent a3b805ee7b
commit 71ebf1235e
4 changed files with 97 additions and 6 deletions

View file

@ -0,0 +1,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