diff options
author | Treeki <treeki@gmail.com> | 2012-09-16 20:13:29 +0200 |
---|---|---|
committer | Treeki <treeki@gmail.com> | 2012-09-16 20:13:29 +0200 |
commit | 7cccf6fd2715cd1fae9745ae2b15c077a97e4e2f (patch) | |
tree | c79a81d147511fcad842e8f1a64d9c0e58828ebb /include/newer.h | |
parent | be31f99777d00238151df5851042a9e896d24f74 (diff) | |
parent | eb4b6edcbef13c80b0051abe9dc89c93e7a960d0 (diff) | |
download | kamek-7cccf6fd2715cd1fae9745ae2b15c077a97e4e2f.tar.gz kamek-7cccf6fd2715cd1fae9745ae2b15c077a97e4e2f.zip |
Merge branch 'file-select' into level-select
Diffstat (limited to '')
-rw-r--r-- | include/newer.h | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/include/newer.h b/include/newer.h new file mode 100644 index 0000000..4f34f81 --- /dev/null +++ b/include/newer.h @@ -0,0 +1,31 @@ +#ifndef NEWER_H +#define NEWER_H + +enum NWRWorld { + ISLAND = 0, YOSHI_ISLAND = 0, + DESERT = 1, RUBBLE_RUINS = 1, + SEWER = 2, SOGGY_SEWERS = 2, + MOUNTAIN = 3, MUSHROOM_PEAKS = 3, + SAKURA = 4, SAKURA_VILLAGE = 4, + FREEZEFLAME = 5, FREEZEFLAME_GLACIER = 5, + VOLCANO = 6, FREEZEFLAME_VOLCANO = 6, + PUMPKIN = 7, PUMPKIN_BONEYARD = 7, + SKY_MOUNTAIN = 8, + SKY = 9, STARRY_SKIES = 9, + PLANET = 10, KOOPA_PLANET = 10, + CORE = 11, KOOPA_CORE = 11, + BONUS_LAND = 12, + GOLDWOOD = 13, GOLDWOOD_FOREST = 13, + MINIMEGA = 14, MINIMEGA_ISLAND = 14, + CRYSTAL = 15, CRYSTAL_CAVES = 15, + BOMBARD = 16, BOMBARD_CLIFFS = 16, + SKY_CITY = 17, + WORLD_COUNT = 18, + UNKNOWN_WORLD = 255 +}; + +NWRWorld NewerWorldForLevelID(int world, int level); + +const wchar_t *NewerWorldName(NWRWorld world); + +#endif /* NEWER_H */ |