role-debug-mod/RoleDebugMod/RoleDebugModPlugin.cs

21 lines
392 B
C#
Raw Normal View History

2025-03-05 17:39:53 -05:00
using BepInEx;
using BepInEx.Unity.IL2CPP;
using HarmonyLib;
using Reactor;
using Reactor.Utilities;
namespace RoleDebugMod;
[BepInAutoPlugin]
[BepInProcess("Among Us.exe")]
[BepInDependency(ReactorPlugin.Id)]
public partial class RoleDebugModPlugin : BasePlugin
{
public Harmony Harmony { get; } = new(Id);
public override void Load()
{
Harmony.PatchAll();
}
}