pokeplatinum/include/platform_lift.h
Kuruyia 7329ad4784 Document platform lift
This documents the `unk_0207160C.c` file, which is in charge of setting
up and managing the platform lift dynamic map feature for maps that
contains platform lifts (Iron Island and the Pokémon League).

This does not manage platform lifts used by gyms.

Signed-off-by: Kuruyia <github@kuruyia.net>
2025-03-30 17:14:21 +02:00

12 lines
415 B
C

#ifndef POKEPLATINUM_PLATFORM_LIFT_H
#define POKEPLATINUM_PLATFORM_LIFT_H
#include "field/field_system_decl.h"
void PlatformLift_DynamicMapFeaturesInit(FieldSystem *fieldSystem);
void PersistedMapFeatures_InitForPlatformLift(FieldSystem *fieldSystem);
u8 PlatformLift_WasNotUsedWhenEnteredMap(FieldSystem *fieldSystem);
void PlatformLift_Trigger(FieldSystem *fieldSystem);
#endif // POKEPLATINUM_PLATFORM_LIFT_H