vrseasons
diff src/game.h @ 0:393ef1143c9c
VR seasons
author | John Tsiombikas <nuclear@member.fsf.org> |
---|---|
date | Tue, 07 Apr 2015 11:16:56 +0300 |
parents | |
children |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/src/game.h Tue Apr 07 11:16:56 2015 +0300 1.3 @@ -0,0 +1,13 @@ 1.4 +#ifndef GAME_H_ 1.5 +#define GAME_H_ 1.6 + 1.7 +bool game_init(int argc, char **argv); 1.8 +void game_shutdown(); 1.9 + 1.10 +void game_draw(); 1.11 +void game_reshape(int x, int y); 1.12 +void game_keyboard(int key, bool press); 1.13 +void game_mbutton(int bn, bool press, int x, int y); 1.14 +void game_mmotion(int x, int y); 1.15 + 1.16 +#endif /* GAME_H_ */