NAK_CVR_Mods/FuckMLA/Main.cs
NotAKidoS 69cb3b7804 [FuckMLA] Initial testing
New mod that unlocks the cursor by default when launching in VR.
2023-09-19 22:52:09 -05:00

26 lines
No EOL
624 B
C#

using MelonLoader;
namespace NAK.FuckMLA;
public class FuckMLA : MelonMod
{
public override void OnInitializeMelon()
{
ApplyPatches(typeof(HarmonyPatches.RootLogicPatches));
ApplyPatches(typeof(HarmonyPatches.CVRInputModulePatches));
ApplyPatches(typeof(HarmonyPatches.MOUSELOCKALPHAPatches));
}
private void ApplyPatches(Type type)
{
try
{
HarmonyInstance.PatchAll(type);
}
catch (Exception e)
{
LoggerInstance.Msg($"Failed while patching {type.Name}!");
LoggerInstance.Error(e);
}
}
}