timings
[carveJwlIkooP6JGAAIwe30JlM.git] / world_info.h
1 /*
2 * Copyright (C) 2021-2023 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 track_info
14 {
15 const char *name,
16 *achievement_id;
17 int push;
18 }
19 track_infos[] =
20 {
21 {
22 .name = "Megapark Green",
23 .achievement_id = "ROUTE_MPG",
24 .push = 1
25 },
26 {
27 .name = "Megapark Blue",
28 .achievement_id = "ROUTE_MPB",
29 .push = 1
30 },
31 {
32 .name = "Megapark Yellow",
33 .achievement_id = "ROUTE_MPY",
34 .push = 1
35 },
36 {
37 .name = "Megapark Red",
38 .achievement_id = "ROUTE_MPR",
39 .push = 1
40 },
41 {
42 .name = "Coastal Run",
43 .achievement_id = "ROUTE_TC",
44 .push = 1
45 },
46 {
47 .name = "Docks Jumps",
48 .achievement_id = "ROUTE_TO",
49 .push = 1
50 }
51 };
52
53 #endif