conworlds

view src/game.h @ 7:bd8202d6d28d

some progress...
author John Tsiombikas <nuclear@member.fsf.org>
date Fri, 22 Aug 2014 16:55:16 +0300
parents a797e426e309
children c814f77d177e
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, 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_