Proper Subversion configuration.
[newkind] / options.h
1 /*
2 * Elite - The New Kind.
3 *
4 * Reverse engineered from the BBC disk version of Elite.
5 * Additional material by C.J.Pinder.
6 *
7 * The original Elite code is (C) I.Bell & D.Braben 1984.
8 * This version re-engineered in C by C.J.Pinder 1999-2001.
9 *
10 * email: <christian@newkind.co.uk>
11 *
12 *
13 */
14
15 /*
16 * options.h
17 */
18
19 #ifndef OPTIONS_H
20 #define OPTIONS_H
21
22 void display_options (void);
23 void select_previous_option (void);
24 void select_next_option (void);
25 void do_option (void);
26
27 void select_left_setting (void);
28 void select_right_setting (void);
29 void select_up_setting (void);
30 void select_down_setting (void);
31 void toggle_setting (void);
32
33 #endif