vrchess

view src/game.h @ 0:b326d53321f7

initial commit
author John Tsiombikas <nuclear@member.fsf.org>
date Fri, 25 Apr 2014 05:20:53 +0300
parents
children 879194e4b1f0
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);
15 void game_6dof_move(float x, float y, float z);
16 void game_6dof_rotate(float x, float y, float z);
18 #endif // GAME_H_