moved everything to Harmony

This commit is contained in:
Stardust3D 2021-12-11 20:18:21 +01:00
parent 3332ca42c5
commit 31ae55667e
14 changed files with 563 additions and 0 deletions

View file

@ -0,0 +1,16 @@
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());
}
}
}