rimworld-animations/Milkable-Colonists-Animations/Source/Patches/Harmony_PatchAll.cs

23 lines
444 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Verse;
using HarmonyLib;
using System.Reflection;
2024-05-09 02:29:08 +00:00
namespace MC_Animations {
[StaticConstructorOnStartup]
public static class Harmony_PatchAll {
static Harmony_PatchAll() {
2024-05-09 02:29:08 +00:00
Harmony val = new Harmony("mcanim");
val.PatchAll(Assembly.GetExecutingAssembly());
}
}
}