You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
bomberclone/include/keybinput.h

16 lines
271 B

#ifndef _KEYBINPUT_H_
#define _KEYBINPUT_H_
struct __keybinput {
char text[255];
short int curpos;
short int len;
char changed;
} typedef _keybinput;
extern void keybinput_new (_keybinput *ki);
extern int keybinput_loop (_keybinput *ki, SDL_Event *event);
#endif