rimworld-animations/Milkable-Colonists-Animations/Source/Patches/Harmony_PatchAll.cs
2024-05-08 19:29:08 -07:00

22 lines
444 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 MC_Animations {
[StaticConstructorOnStartup]
public static class Harmony_PatchAll {
static Harmony_PatchAll() {
Harmony val = new Harmony("mcanim");
val.PatchAll(Assembly.GetExecutingAssembly());
}
}
}