Import from neverball-1.4.0.tar.gz
[neverball-archive.git] / putt / course.h
blob2fa83c45722d1765eabea8b2147f64f263744d8e
1 #ifndef COURSE_H
2 #define COURSE_H
4 /*---------------------------------------------------------------------------*/
6 #define COURSE_FILE "courses.txt"
7 #define MAXCRS 16
9 void course_init();
10 void course_free();
12 int course_exists(int);
13 int course_count(void);
14 void course_goto(int);
15 int course_curr(void);
16 void course_rand(void);
18 const char *course_name(int);
19 const char *course_desc(int);
20 const char *course_shot(int);
22 /*---------------------------------------------------------------------------*/
24 #endif