intravenous

view src/game.h @ 10:8fbdc6f84f64

fixed after the change in vmath
author John Tsiombikas <nuclear@member.fsf.org>
date Fri, 31 May 2013 01:30:14 +0300
parents 2b30f261f641
children
line source
1 #ifndef GAME_H_
2 #define GAME_H_
4 typedef double time_sec_t;
6 extern int win_xsz, win_ysz;
8 bool game_init();
9 void game_shutdown();
11 void game_update(unsigned long msec);
12 void game_draw();
14 void game_input_keyb(int key, int state);
15 void game_input_mbutton(int bn, int state, int x, int y);
16 void game_input_mmotion(int x, int y);
18 #endif // GAME_H_