d821b85d94903fc71d98d312cdb0d206fd3451b0
[neverball] / ball / demo.h
1 #ifndef DEMO_H
2 #define DEMO_H
3
4 /*---------------------------------------------------------------------------*/
5
6 #define MAXDEMO 256
7
8 int         demo_scan(void);
9 const char *demo_pick(void);
10 const char *demo_name(int);
11 const char *demo_shot(int);
12 int         demo_coins(int);
13 int         demo_clock(int);
14
15 int  demo_exists(char *);
16 void demo_unique(char *);
17
18 /*---------------------------------------------------------------------------*/
19
20 int  demo_play_init(const char *, const char *, const char *,
21                     const char *, const char *, const char *,
22                     int, int, int, int, int);
23 void demo_play_step(float);
24 void demo_play_stop(int, int);
25 void demo_play_save(const char *);
26
27 /*---------------------------------------------------------------------------*/
28
29 int  demo_replay_init(const char *, int *, int *, int *, int *, int *);
30 int  demo_replay_step(float *);
31 void demo_replay_stop(int);
32
33 /*---------------------------------------------------------------------------*/
34
35 #endif