Proper Subversion configuration.
[newkind] / options.h
CommitLineData
84bbd123 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
22void display_options (void);
23void select_previous_option (void);
24void select_next_option (void);
25void do_option (void);
26
27void select_left_setting (void);
28void select_right_setting (void);
29void select_up_setting (void);
30void select_down_setting (void);
31void toggle_setting (void);
32
33#endif