rimworld-animations/1.5/Source/Defs/AnimationDefOf.cs
c0ffee e8fd61fb4a Rewrote anim framework to use vanilla animation system
- added extended functionality for head rotations, invisible
 - tentative design for groupanimationdefs
2024-04-16 15:10:46 -07:00

22 lines
470 B
C#

using RimWorld;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Verse;
namespace Rimworld_Animations
{
[DefOf]
public static class AnimationDefOf
{
static AnimationDefOf()
{
DefOfHelper.EnsureInitializedInCtor(typeof(SoundDefOf));
}
public static AnimationDef TestAnimation1;
public static AnimationDef TestAnimation2;
}
}