Add some newers things :

-Change helper ModelConstants to Keyboard
	-Now helpers is in folder Helpers
	-Change direction name to use CamelCase
This commit is contained in:
manzerbredes 2015-05-01 13:18:26 +02:00
parent 672358a947
commit 048f1e17b7
9 changed files with 25 additions and 107 deletions

17
src/Helpers/Keyboard.hpp Normal file
View file

@ -0,0 +1,17 @@
#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 };
typedef enum Direction Direction;
}
#endif