mirror of
https://gitgud.io/c0ffeeeeeeee/rimworld-animations.git
synced 2024-08-15 00:43:45 +00:00
e8fd61fb4a
- added extended functionality for head rotations, invisible - tentative design for groupanimationdefs
22 lines
470 B
C#
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;
|
|
}
|
|
}
|