Add missing credit for Esperanto translation
[neverball.git] / putt / course.h
blob532a82ebe8f6eeb2f706467c31f7dfe97cb180f2
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