achievements
[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 *achievement_id;
23 int push;
24 }
25 track_infos[] =
26 {
27 {
28 .name = "Megapark Green",
29 .achievement_id = "ROUTE_MPG",
30 .push = 1
31 },
32 {
33 .name = "Megapark Blue",
34 .achievement_id = "ROUTE_MPB",
35 .push = 1
36 },
37 {
38 .name = "Megapark Yellow",
39 .achievement_id = "ROUTE_MPY",
40 .push = 1
41 },
42 {
43 .name = "Megapark Red",
44 .achievement_id = "ROUTE_MPR",
45 .push = 1
46 },
47 {
48 .name = "Coastal Run",
49 .achievement_id = "ROUTE_TC",
50 .push = 1
51 },
52 {
53 .name = "Docks Jumps",
54 .achievement_id = "ROUTE_TO",
55 .push = 1
56 }
57 };
58
59 #endif