[FuckMLA] Initial testing

New mod that unlocks the cursor by default when launching in VR.
This commit is contained in:
NotAKidoS 2023-09-19 22:52:09 -05:00
parent fae729dd54
commit 69cb3b7804
6 changed files with 140 additions and 6 deletions

26
FuckMLA/Main.cs Normal file
View file

@ -0,0 +1,26 @@
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);
}
}
}