NAK_CVR_Mods/.DepricatedMods/FuckMLA/Main.cs
2024-01-03 01:47:55 -06: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);
}
}
}