X-Git-Url: https://harrygodden.com/git/?a=blobdiff_plain;f=world_info.h;h=012199eeea5510d93a9d743f9f47144f923ccc17;hb=0a33f65eecb5e75cddaefa08d3a5eb1a301d0479;hp=7793b1358874a3bf616e61422851d59f7058edc0;hpb=d00b1df8f80e4714dc2f9aa2189d242bb4d09a2f;p=carveJwlIkooP6JGAAIwe30JlM.git diff --git a/world_info.h b/world_info.h index 7793b13..012199e 100644 --- a/world_info.h +++ b/world_info.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2021-2022 Mt.ZERO Software, Harry Godden - All Rights Reserved + * Copyright (C) 2021-2023 Mt.ZERO Software, Harry Godden - All Rights Reserved */ #ifndef WORLD_INFO_H @@ -10,41 +10,42 @@ /* Purely an information header, shares common strings across client and * server programs. */ -static struct world_info -{ - -} -world_info; - static struct track_info { - const char *name; + const char *name, + *achievement_id; int push; } track_infos[] = { { .name = "Megapark Green", + .achievement_id = "ROUTE_MPG", .push = 1 }, { .name = "Megapark Blue", + .achievement_id = "ROUTE_MPB", .push = 1 }, { .name = "Megapark Yellow", + .achievement_id = "ROUTE_MPY", .push = 1 }, { .name = "Megapark Red", + .achievement_id = "ROUTE_MPR", .push = 1 }, { - .name = "Town Coast (Blue)", + .name = "Coastal Run", + .achievement_id = "ROUTE_TC", .push = 1 }, { - .name = "Town Downhill (Orange)", + .name = "Docks Jumps", + .achievement_id = "ROUTE_TO", .push = 1 } };