tavli

view src/game.h @ 14:283eb6e9f0a3

scenery
author John Tsiombikas <nuclear@member.fsf.org>
date Sun, 28 Jun 2015 07:44:23 +0300
parents 52e0dd47753b
children b1a195c3ee16
line source
1 #ifndef GAME_H_
2 #define GAME_H_
4 extern int win_width, win_height;
6 extern bool wireframe;
8 bool game_init();
9 void game_cleanup();
10 void game_update(unsigned long time_msec);
11 void game_display();
12 void game_reshape(int x, int y);
13 void game_keyboard(int bn, bool press);
14 void game_mbutton(int bn, bool press, int x, int y);
15 void game_mmotion(int x, int y);
17 void redisplay();
18 void quit();
20 #endif /* GAME_H_ */