couple bugs
[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 #include "highscores.h"
12
13 struct track_info
14 {
15 const char *name,
16 *achievement_id;
17
18 highscore_record record; /* session */
19 int push;
20 }
21 static track_infos[] =
22 {
23 {
24 .name = "Megapark Green",
25 .achievement_id = "ROUTE_MPG",
26 },
27 {
28 .name = "Megapark Blue",
29 .achievement_id = "ROUTE_MPB",
30 },
31 {
32 .name = "Megapark Yellow",
33 .achievement_id = "ROUTE_MPY",
34 },
35 {
36 .name = "Megapark Red",
37 .achievement_id = "ROUTE_MPR",
38 },
39 {
40 .name = "Coastal Run",
41 .achievement_id = "ROUTE_TC",
42 },
43 {
44 .name = "Docks Jumps",
45 .achievement_id = "ROUTE_TO",
46 }
47 };
48
49 #endif