r/o
1
#ifndef QB_H
2
#define QB_H
3
4
#include <SDL2/sdl_keycode.h>
5
6
extern int qb_running;
7
8
void qb_init(void);
9
void qb_keypress(SDL_Keycode sym, Uint16 mod);
10
11
#endif
12
13
/* vim: set sw=4 et: */
14