orgy ritual

This commit is contained in:
c0ffee12 2021-07-27 23:14:27 -07:00
parent edc619a950
commit 379c9a4d7d
13 changed files with 264 additions and 6 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("C0ffeeRIA");
harmony.PatchAll(Assembly.GetExecutingAssembly());
}
}
}