supercasiobros/include/keyboard.h

22 lines
256 B
C
Executable File

#ifndef KEYBOARD_CUSTOM_H
#define KEYBOARD_CUSTOM_H
typedef enum
{
MK_NONE=-1,
MK_LEFT,
MK_RIGHT,
MK_JUMP1,
MK_JUMP2,
MK_RUN,
MK_LITTLE
} mkey_t;
extern mkey_t keys[6];
void update_keyboard();
void keyboard_clear();
int getkey_custom();
#endif