mirror of
https://github.com/NotAKidoS/NAK_CVR_Mods.git
synced 2025-09-01 13:59:22 +00:00
14 lines
409 B
C#
14 lines
409 B
C#
using ABI_RC.Systems.InputManagement;
|
|
using HarmonyLib;
|
|
|
|
namespace NAK.ChatBoxExtensions.HarmonyPatches;
|
|
|
|
public class CVRInputManagerPatches
|
|
{
|
|
[HarmonyPostfix]
|
|
[HarmonyPatch(typeof(CVRInputManager), nameof(CVRInputManager.Start))]
|
|
private static void Postfix_CVRInputManager_Start(ref CVRInputManager __instance)
|
|
{
|
|
__instance.AddInputModule(ChatBoxExtensions.InputModule);
|
|
}
|
|
}
|