Initial import.
[neverball] / ball / set.h
1 #ifndef SET_H
2 #define SET_H
3
4 /*---------------------------------------------------------------------------*/
5
6 #define SET_FILE "sets.txt"
7 #define MAXSET 16
8
9 void set_init();
10 void set_free();
11
12 int  set_exists(int);
13 void set_goto(int);
14 int  set_curr(void);
15
16 const char *set_name(int);
17 const char *set_desc(int);
18 const char *set_shot(int);
19
20 /*---------------------------------------------------------------------------*/
21
22 #endif