stuff
[carveJwlIkooP6JGAAIwe30JlM.git] / world_info.h
1 #ifndef WORLD_INFO_H
2 #define WORLD_INFO_H
3
4 #include "vg/vg_stdint.h"
5
6 /* Purely an information header, shares common strings across client and
7 * server programs. */
8
9 static struct world_info
10 {
11
12 }
13 world_info;
14
15 static struct track_info
16 {
17 const char *name;
18 int push;
19 }
20 track_infos[] =
21 {
22 {
23 .name = "Megapark Green",
24 .push = 1
25 },
26 {
27 .name = "Megapark Blue",
28 .push = 1
29 },
30 {
31 .name = "Megapark Yellow",
32 .push = 1
33 },
34 {
35 .name = "Megapark Red",
36 .push = 1
37 },
38 {
39 .name = "Town Coast (Blue)",
40 .push = 1
41 },
42 {
43 .name = "Town Downhill (Orange)",
44 .push = 1
45 }
46 };
47
48 #endif