X-Git-Url: https://harrygodden.com/git/?a=blobdiff_plain;f=world_info.h;h=012199eeea5510d93a9d743f9f47144f923ccc17;hb=d6171f1c56789b2ca79efa3313fbbf74a13bda7a;hp=c8b3e2833e43890e91c0ecc34f4c506fd481f0b8;hpb=c33e4f46d864b2fde0c5938bf5a9388b1e8b5c04;p=carveJwlIkooP6JGAAIwe30JlM.git diff --git a/world_info.h b/world_info.h index c8b3e28..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 = "Coastal Run", + .achievement_id = "ROUTE_TC", .push = 1 }, { .name = "Docks Jumps", + .achievement_id = "ROUTE_TO", .push = 1 } };