Proper Subversion configuration.
[newkind] / config.h
1 /**
2 *
3 * Elite - The New Kind.
4 *
5 * The code in this file has not been derived from the original Elite code.
6 * Written by C.J.Pinder 1999-2001.
7 *
8 * email: <christian@newkind.co.uk>
9 *
10 **/
11
12 /*
13 * config.h
14 *
15 * Define the compile time options.
16 * Most options are defined at runtime in the newkind.cfg file.
17 * However some must be done at compile time either because they are
18 * platform dependant or for playing speed.
19 */
20
21
22 #ifndef CONFIG_H
23 #define CONFIG_H
24
25 /*
26 * Set the graphics platform we are using...
27 */
28
29 #define GFX_ALLEGRO
30
31 /*
32 * #define GFX_WIN32_GDI
33 * #define GFX_OPENGL
34 * #defime GFX_X_WINDOWS
35 * #define GFX_DIRECTX
36 */
37
38 /*
39 * Set the screen resolution...
40 * (if nothing is defined, assume 256x256).
41 */
42
43 #define RES_800_600
44 // #define RES_512_512
45
46 /*
47 * #define RES_640_480
48 * #define RES_320_240
49 */
50
51 #endif