Add a "idle" method to the state structure
[neverball] / putt / course.h
1 #ifndef COURSE_H
2 #define COURSE_H
3
4 /*---------------------------------------------------------------------------*/
5
6 #define COURSE_FILE "courses.txt"
7 #define MAXCRS 16
8
9 void course_init();
10 void course_free();
11
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);
17
18 const char *course_name(int);
19 const char *course_desc(int);
20 const char *course_shot(int);
21
22 /*---------------------------------------------------------------------------*/
23
24 #endif