Initial commit

This commit is contained in:
AbstractConcept 2022-11-02 00:56:22 -05:00
parent fe7c28ad8e
commit 55402b9891
54 changed files with 2515 additions and 92 deletions

View file

@ -0,0 +1,29 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Verse;
using HarmonyLib;
using System.Reflection;
using rjw;
namespace Privacy_Please
{
[StaticConstructorOnStartup]
public static class Harmony_PatchAll
{
static Harmony_PatchAll()
{
Harmony harmony = new Harmony("Rimworld_Animations_Patch");
harmony.PatchAll(Assembly.GetExecutingAssembly());
// Add quirks to game
Quirk voyeur = new Quirk("Voyeur", "VoyeurQuirk");
Quirk.All.AddDistinct(voyeur);
Quirk cuckold = new Quirk("Cuckold", "CuckoldQuirk");
Quirk.All.AddDistinct(cuckold);
}
}
}