rjw-genes/Source/HarmonyInit.cs

16 lines
279 B
C#
Raw Normal View History

2022-11-20 19:53:05 +00:00
using Verse;
using HarmonyLib;
namespace RJW_Genes
{
[StaticConstructorOnStartup]
internal static class HarmonyInit
{
static HarmonyInit()
{
Harmony harmony = new Harmony("rjw_genes");
harmony.PatchAll();
}
}
}