vrchess

view src/game.h @ 3:a797e426e309

minor changes
author John Tsiombikas <nuclear@member.fsf.org>
date Tue, 19 Aug 2014 11:01:04 +0300
parents 879194e4b1f0
children bd8202d6d28d
line source
1 #ifndef GAME_H_
2 #define GAME_H_
4 bool game_init();
5 void game_cleanup();
7 void game_update(unsigned int msec);
8 void game_render(int eye);
10 void game_reshape(int x, int y);
11 void game_keyboard(int key, bool pressed, int x, int y);
12 void game_mouse(int bn, bool pressed, int x, int y);
13 void game_motion(int x, int y);
14 void game_mwheel(int dir);
16 void game_6dof_move(float x, float y, float z);
17 void game_6dof_rotate(float x, float y, float z);
19 #endif // GAME_H_