naming conventions for animations

This commit is contained in:
c0ffee 2024-05-08 19:29:08 -07:00
parent 8363cddd6a
commit 43944ed90b
68 changed files with 236 additions and 1627 deletions

View file

@ -0,0 +1,22 @@
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());
}
}
}