mirror of
https://github.com/izzy2lost/2ship2harkinian-Android.git
synced 2026-06-19 01:20:08 -07:00
85 lines
1.8 KiB
C++
85 lines
1.8 KiB
C++
#include "Enhancements.h"
|
|
|
|
void InitEnhancements() {
|
|
// Camera
|
|
RegisterCameraInterpolationFixes();
|
|
RegisterCameraFreeLook();
|
|
RegisterDebugCam();
|
|
|
|
// Cheats
|
|
RegisterInfiniteCheats();
|
|
RegisterLongerFlowerGlide();
|
|
RegisterMoonJumpOnL();
|
|
RegisterUnbreakableRazorSword();
|
|
RegisterUnrestrictedItems();
|
|
RegisterTimeStopInTemples();
|
|
RegisterElegyAnywhere();
|
|
|
|
// Clock
|
|
RegisterTextBasedClock();
|
|
Register3DSClock();
|
|
|
|
// Cycle & Saving
|
|
RegisterEndOfCycleSaveHooks();
|
|
RegisterSavingEnhancements();
|
|
RegisterAutosave();
|
|
RegisterKeepExpressMail();
|
|
|
|
// Dialogue
|
|
RegisterFastBankSelection();
|
|
|
|
// Equipment
|
|
RegisterSkipMagicArrowEquip();
|
|
RegisterInstantRecall();
|
|
|
|
// Fixes
|
|
RegisterFierceDeityZTargetMovement();
|
|
RegisterTwoHandedSwordSpinAttack();
|
|
|
|
// Graphics
|
|
RegisterDisableBlackBars();
|
|
Register3DItemDrops();
|
|
|
|
// Masks
|
|
RegisterFastTransformation();
|
|
RegisterFierceDeityAnywhere();
|
|
RegisterBlastMaskKeg();
|
|
RegisterNoBlastMaskCooldown();
|
|
RegisterPersistentMasks();
|
|
|
|
// Minigames
|
|
RegisterAlwaysWinDoggyRace();
|
|
RegisterCremiaHugs();
|
|
RegisterSwordsmanSchool();
|
|
|
|
// Player
|
|
RegisterClimbSpeed();
|
|
RegisterFastFlowerLaunch();
|
|
RegisterInstantPutaway();
|
|
RegisterFierceDeityPutaway();
|
|
|
|
// Songs
|
|
RegisterEnableSunsSong();
|
|
RegisterFasterSongPlayback();
|
|
RegisterPauseOwlWarp();
|
|
RegisterZoraEggCount();
|
|
RegisterSkipScarecrowSong();
|
|
|
|
// Restorations
|
|
RegisterPowerCrouchStab();
|
|
RegisterSideRoll();
|
|
RegisterTatlISG();
|
|
RegisterVariableFlipHop();
|
|
RegisterWoodfallMountainAppearance();
|
|
|
|
// Cutscenes
|
|
RegisterCutscenes();
|
|
|
|
// Modes
|
|
RegisterPlayAsKafei();
|
|
RegisterTimeMovesWhenYouMove();
|
|
|
|
// Difficulty Options
|
|
RegisterDisableTakkuriSteal();
|
|
}
|