vrseasons

annotate 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
rev   line source
nuclear@0 1 #ifndef GAME_H_
nuclear@0 2 #define GAME_H_
nuclear@0 3
nuclear@0 4 bool game_init(int argc, char **argv);
nuclear@0 5 void game_shutdown();
nuclear@0 6
nuclear@0 7 void game_draw();
nuclear@0 8 void game_reshape(int x, int y);
nuclear@0 9 void game_keyboard(int key, bool press);
nuclear@0 10 void game_mbutton(int bn, bool press, int x, int y);
nuclear@0 11 void game_mmotion(int x, int y);
nuclear@0 12
nuclear@0 13 #endif /* GAME_H_ */