privacy-please/Source/Scripts/Patches/HarmonyPatch_PatchAll.cs

35 lines
903 B
C#
Raw Normal View History

2022-11-02 05:56:22 +00:00
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()
{
2022-11-04 13:52:17 +00:00
Harmony harmony = new Harmony("Privacy_Please");
2022-11-02 05:56:22 +00:00
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);
2022-11-04 13:52:17 +00:00
2023-01-31 06:06:52 +00:00
Quirk cuckolder = new Quirk("Cuckolder", "CuckolderQuirk");
Quirk.All.AddDistinct(cuckolder);
2022-11-04 13:52:17 +00:00
DebugMode.Message("Added RJW quirks");
2022-11-02 05:56:22 +00:00
}
}
}