mirror of
https://github.com/pret/pokeplatinum.git
synced 2026-07-31 23:24:08 -05:00
This documents the `ov5_021EF75C.c` file, which is in charge of loading various "area data" NARCs that, in the end, contain the textures of maps, the textures and models of map props, and lighting information. Also, renamed `MapProp.id` to `MapProp.modelID` for more clarity (especially when interacting with the new area data functions). Signed-off-by: Kuruyia <github@kuruyia.net>
15 lines
416 B
C
15 lines
416 B
C
#ifndef POKEPLATINUM_CONSTANTS_MAP_PROP_H
|
|
#define POKEPLATINUM_CONSTANTS_MAP_PROP_H
|
|
|
|
enum MapPropModelId {
|
|
MAP_PROP_MODEL_ID_HONEY_TREE = 26,
|
|
MAP_PROP_MODEL_ID_UNK_124 = 124,
|
|
MAP_PROP_MODEL_ID_UNK_242 = 242,
|
|
MAP_PROP_MODEL_ID_UNK_258 = 258,
|
|
MAP_PROP_MODEL_ID_UNK_475 = 475,
|
|
MAP_PROP_MODEL_ID_UNK_498 = 498,
|
|
MAP_PROP_MODEL_ID_UNK_517 = 517,
|
|
};
|
|
|
|
#endif // POKEPLATINUM_CONSTANTS_MAP_PROP_H
|