fix routes
[carveJwlIkooP6JGAAIwe30JlM.git] / world_info.h
1 /*
2 * Copyright (C) 2021-2022 Mt.ZERO Software, Harry Godden - All Rights Reserved
3 */
4
5 #ifndef WORLD_INFO_H
6 #define WORLD_INFO_H
7
8 #include "vg/vg_stdint.h"
9
10 /* Purely an information header, shares common strings across client and
11 * server programs. */
12
13 static struct world_info
14 {
15
16 }
17 world_info;
18
19 static struct track_info
20 {
21 const char *name;
22 int push;
23 }
24 track_infos[] =
25 {
26 {
27 .name = "Megapark Green",
28 .push = 1
29 },
30 {
31 .name = "Megapark Blue",
32 .push = 1
33 },
34 {
35 .name = "Megapark Yellow",
36 .push = 1
37 },
38 {
39 .name = "Megapark Red",
40 .push = 1
41 },
42 {
43 .name = "Coastal Run",
44 .push = 1
45 },
46 {
47 .name = "Docks Jumps",
48 .push = 1
49 }
50 };
51
52 #endif