pokeplatinum/include/constants/map_prop.h
Kuruyia be823a26bb Document area data
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>
2025-02-22 13:38:54 +01:00

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