nuclear@2: #ifndef GAME_H_ nuclear@2: #define GAME_H_ nuclear@2: nuclear@2: bool game_init(); nuclear@2: void game_cleanup(); nuclear@2: nuclear@2: void game_update(unsigned int msec); nuclear@2: void game_render(int eye); nuclear@2: nuclear@2: void game_reshape(int x, int y); nuclear@2: void game_keyboard(int key, bool pressed, int x, int y); nuclear@2: void game_mouse(int bn, bool pressed, int x, int y); nuclear@2: void game_motion(int x, int y); nuclear@2: nuclear@2: void game_6dof_move(float x, float y, float z); nuclear@2: void game_6dof_rotate(float x, float y, float z); nuclear@2: nuclear@2: #endif // GAME_H_