mirror of
https://github.com/HarbourMasters/Shipwright.git
synced 2025-02-13 05:40:14 -05:00
27 lines
483 B
C
27 lines
483 B
C
#include <stdint.h>
|
|
|
|
#ifndef MODS_H
|
|
#define MODS_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void UpdateDirtPathFixState(int32_t sceneNum);
|
|
void UpdateMirrorModeState(int32_t sceneNum);
|
|
void UpdateHurtContainerModeState(bool newState);
|
|
void PatchToTMedallions();
|
|
void PatchCompasses();
|
|
void UpdatePermanentHeartLossState();
|
|
void UpdateHyperEnemiesState();
|
|
void UpdateHyperBossesState();
|
|
void InitMods();
|
|
void UpdatePatchHand();
|
|
void SwitchAge();
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|