mirror of
https://github.com/Shabakur/RJW_Animal_Gene_Inheritance.git
synced 2024-08-14 22:46:41 +00:00
21 lines
435 B
C#
21 lines
435 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using HarmonyLib;
|
|
using Verse;
|
|
|
|
namespace RJW_BGS
|
|
{
|
|
[StaticConstructorOnStartup]
|
|
internal static class HarmonyInit
|
|
{
|
|
// Token: 0x0600001F RID: 31 RVA: 0x000029A4 File Offset: 0x00000BA4
|
|
static HarmonyInit()
|
|
{
|
|
Harmony harmony = new Harmony("RJW_BGS");
|
|
harmony.PatchAll();
|
|
}
|
|
}
|
|
}
|