RJW_More_/RJW_More_Genes/Source/RJW_More_Genes/HarmonyInit.cs

22 lines
406 B
C#
Raw Normal View History

2022-11-21 17:34:14 +00:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Verse;
using HarmonyLib;
namespace RJW_More_Genes
2022-11-21 17:34:14 +00:00
{
[StaticConstructorOnStartup]
internal static class HarmonyInit
{
static HarmonyInit()
{
Harmony harmony = new Harmony("RJW_More_Genes");
2022-11-21 17:34:14 +00:00
harmony.PatchAll();
}
}
}