fix server code error
[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 /* Purely an information header, shares common strings across client and
9 * server programs. */
10
11 static struct track_info
12 {
13 const char *name,
14 *achievement_id;
15 int push;
16 }
17 track_infos[] =
18 {
19 {
20 .name = "Megapark Green",
21 .achievement_id = "ROUTE_MPG",
22 .push = 1
23 },
24 {
25 .name = "Megapark Blue",
26 .achievement_id = "ROUTE_MPB",
27 .push = 1
28 },
29 {
30 .name = "Megapark Yellow",
31 .achievement_id = "ROUTE_MPY",
32 .push = 1
33 },
34 {
35 .name = "Megapark Red",
36 .achievement_id = "ROUTE_MPR",
37 .push = 1
38 },
39 {
40 .name = "Coastal Run",
41 .achievement_id = "ROUTE_TC",
42 .push = 1
43 },
44 {
45 .name = "Docks Jumps",
46 .achievement_id = "ROUTE_TO",
47 .push = 1
48 }
49 };
50
51 #endif