Adoranda/include/game.h

14 lines
186 B
C
Raw Normal View History

2021-07-29 18:33:22 +02:00
#pragma once
2021-08-15 03:10:05 +02:00
/*get the input with a timeout*/
2021-08-07 01:49:03 +02:00
int get_inputs(void);
enum direction {
DIR_DOWN = 0,
DIR_LEFT = 1,
DIR_UP = 2,
DIR_RIGHT = 3,
2021-08-08 01:43:26 +02:00
ACTION_SHIFT = 4,
ACTION_ALPHA = 5
2021-08-25 01:01:43 +02:00
};