Import from neverball-1.4.0.tar.gz
[neverball-archive.git] / ball / set.h
blobf500be090980f48e51dcd33de68f162c9f3ed5ae
1 #ifndef SET_H
2 #define SET_H
4 /*---------------------------------------------------------------------------*/
6 #define SET_FILE "sets.txt"
7 #define MAXSET 16
9 void set_init();
10 void set_free();
12 int set_exists(int);
13 void set_goto(int);
14 int set_curr(void);
16 const char *set_name(int);
17 const char *set_desc(int);
18 const char *set_shot(int);
20 /*---------------------------------------------------------------------------*/
22 #endif