mirror of
https://gitgud.io/c0ffeeeeeeee/rimworld-animations.git
synced 2024-08-15 00:43:45 +00:00
23 lines
451 B
C#
23 lines
451 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 Rimworld_Animations {
|
|||
|
|
|||
|
[StaticConstructorOnStartup]
|
|||
|
public static class Harmony_PatchAll {
|
|||
|
|
|||
|
static Harmony_PatchAll() {
|
|||
|
|
|||
|
Harmony val = new Harmony("rjwanim");
|
|||
|
val.PatchAll(Assembly.GetExecutingAssembly());
|
|||
|
|
|||
|
}
|
|||
|
}
|
|||
|
}
|