diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/functions.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/include/functions.h b/include/functions.h index 73979e5..4f35bab 100644 --- a/include/functions.h +++ b/include/functions.h @@ -1,3 +1,10 @@ +#define RIGHT 0b0001 +#define DOWN 0b0010 +#define UP 0b0100 +#define LEFT 0b1000 +#define RIGHTHOLD 0b10000 +#define LEFTHOLD 0b10000000 + void tKeyCtrl(); void initFld(); void tTick(); |