mirror of
https://github.com/pret/pokeplatinum.git
synced 2026-03-21 17:55:13 -05:00
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>
12 lines
415 B
C
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
|