mirror of
https://gitgud.io/AbstractConcept/rimworld-animations-patch.git
synced 2024-08-15 00:43:27 +00:00
22 lines
502 B
C#
22 lines
502 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;
|
|
using rjw;
|
|
|
|
namespace Rimworld_Animations_Patch
|
|
{
|
|
[StaticConstructorOnStartup]
|
|
public static class Harmony_PatchAll
|
|
{
|
|
static Harmony_PatchAll()
|
|
{
|
|
Harmony harmony = new Harmony("Rimworld_Animations_Patch");
|
|
harmony.PatchAll(Assembly.GetExecutingAssembly());
|
|
}
|
|
}
|
|
}
|