tennis.map: Texture tweak
[neverball] / ball / game_client.h
1 #ifndef GAME_CLIENT_H
2 #define GAME_CLIENT_H
3
4 #include "fs.h"
5
6 /*---------------------------------------------------------------------------*/
7
8 enum
9 {
10     POSE_NONE = 0,
11     POSE_LEVEL,
12     POSE_BALL
13 };
14
15 int   game_client_init(const char *);
16 void  game_client_free(const char *);
17 void  game_client_sync(fs_file);
18 void  game_client_draw(int, float);
19 void  game_client_blend(float);
20
21 int   curr_clock(void);
22 int   curr_coins(void);
23 int   curr_status(void);
24
25 void  game_look(float, float);
26
27 void  game_kill_fade(void);
28 void  game_step_fade(float);
29 void  game_fade(float);
30
31 void game_client_fly(float);
32
33 /*---------------------------------------------------------------------------*/
34
35 extern int game_compat_map;
36
37 /*---------------------------------------------------------------------------*/
38
39 #endif