mirror of
https://github.com/HarbourMasters/Shipwright.git
synced 2024-12-19 23:02:41 -05:00
1fff15753a
* First dirty testing process
* Forgot a 2 for the second Dlist patching of Shadow
* TWEAK: GI integration
* DEL: Unucessary includes + whitespace
* TWEAK: No stones refactor for now, sorry I'm kinda lazy right now, don't hate me, please! T_T
* Stone removal part 2, sometime I forget to save the changes :derp:
* Tiny last tweaks, hopefully
* Add to rando preset
* Tweak: typo
* TWEAK: Trigger on toggling on/off
* TWEAK: adressed reviews 💯
* Please mate, excuse my British typing
21 lines
304 B
C
21 lines
304 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 PatchToTMedallions();
|
|
void UpdatePermanentHeartLossState();
|
|
void InitMods();
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|