conworlds

view src/game.h @ 22:5f53272ff612

removed the vr wrapper and added an external dependency to libgoatvr
author John Tsiombikas <nuclear@member.fsf.org>
date Fri, 29 Aug 2014 07:44:26 +0300
parents bd8202d6d28d
children
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();
10 void game_reshape(int x, int y);
11 void game_keyboard(int key, bool pressed);
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_