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 }
19 track_infos[] =
20 {
21 {
22 .name = "Megapark Green"
23 },
24 {
25 .name = "Megapark Blue"
26 },
27 {
28 .name = "Megapark Yellow"
29 },
30 {
31 .name = "Megapark Red"
32 }
33 };
34
35 #endif