lactation precepts

This commit is contained in:
c0ffee12 2021-07-26 08:19:49 -07:00
parent edada8ff48
commit 5752647b4f
10 changed files with 231 additions and 17 deletions

View file

@ -0,0 +1,23 @@
using HarmonyLib;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Reflection;
using System.Text;
using System.Threading.Tasks;
using Verse;
namespace C0ffeeRIA
{
[StaticConstructorOnStartup]
public static class Harmony_PatchAll
{
static Harmony_PatchAll()
{
Harmony harmony = new Harmony("CRIALactation");
harmony.PatchAll(Assembly.GetExecutingAssembly());
}
}
}