mirror of
https://gitgud.io/Stardust3D/rjw-patch-autopsy.git
synced 2024-08-15 00:43:41 +00:00
16 lines
No EOL
337 B
C#
16 lines
No EOL
337 B
C#
using HarmonyLib;
|
|
using System.Reflection;
|
|
using Verse;
|
|
|
|
namespace RJW_patch_Autopsy
|
|
{
|
|
[StaticConstructorOnStartup]
|
|
internal static class First
|
|
{
|
|
static First()
|
|
{
|
|
var har = new Harmony("Stardust3D.RJW.patch.Autopsy");
|
|
har.PatchAll(Assembly.GetExecutingAssembly());
|
|
}
|
|
}
|
|
} |