mirror of
https://gitgud.io/AbstractConcept/overt-underwear.git
synced 2024-08-15 03:19:13 +00:00
21 lines
471 B
C#
21 lines
471 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using Verse;
|
|
using HarmonyLib;
|
|
using System.Reflection;
|
|
|
|
namespace Overt_Underwear
|
|
{
|
|
[StaticConstructorOnStartup]
|
|
public static class Harmony_PatchAll
|
|
{
|
|
static Harmony_PatchAll()
|
|
{
|
|
Harmony harmony = new Harmony("Overt_Underwear");
|
|
harmony.PatchAll(Assembly.GetExecutingAssembly());
|
|
}
|
|
}
|
|
}
|