vrheights

view src/game.h @ 1:d06e4e24f922

foo
author John Tsiombikas <nuclear@member.fsf.org>
date Wed, 24 Sep 2014 11:34:07 +0300
parents
children b49461618f61
line source
1 #ifndef GAME_H_
2 #define GAME_H_
4 bool game_init();
5 void game_cleanup();
7 void game_update(long tm);
8 void game_display();
9 void game_reshape(int x, int y);
10 void game_keyboard(int key, bool pressed);
11 void game_mouse_button(int bn, bool state, int x, int y);
12 void game_mouse_motion(int x, int y);
14 void exit_game(); /* defined in main.cc */
16 #endif /* GAME_H_ */