vrchess

annotate 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
rev   line source
nuclear@0 1 #ifndef GAME_H_
nuclear@0 2 #define GAME_H_
nuclear@0 3
nuclear@0 4 bool game_init();
nuclear@0 5 void game_cleanup();
nuclear@0 6
nuclear@0 7 void game_update(unsigned int msec);
nuclear@0 8 void game_render(int eye);
nuclear@0 9
nuclear@0 10 void game_reshape(int x, int y);
nuclear@0 11 void game_keyboard(int key, bool pressed, int x, int y);
nuclear@0 12 void game_mouse(int bn, bool pressed, int x, int y);
nuclear@0 13 void game_motion(int x, int y);
nuclear@0 14
nuclear@0 15 void game_6dof_move(float x, float y, float z);
nuclear@0 16 void game_6dof_rotate(float x, float y, float z);
nuclear@0 17
nuclear@0 18 #endif // GAME_H_