NAK_CVR_Mods/.DepricatedMods/DesktopVRSwitch/Main.cs
2024-01-03 01:47:55 -06:00

26 lines
No EOL
597 B
C#

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