rimworld-animations/1.3/Source/Comps/CompProperties_BodyAnimator.cs

18 lines
377 B
C#
Raw Normal View History

2022-09-07 14:12:17 +00:00
using System;
2020-04-09 00:43:01 +00:00
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Verse;
using RimWorld;
namespace Rimworld_Animations {
2022-01-25 02:17:49 +00:00
public class CompProperties_BodyAnimator : CompProperties
2020-04-09 00:43:01 +00:00
{
2022-01-25 02:17:49 +00:00
public CompProperties_BodyAnimator()
{
2020-04-09 00:43:01 +00:00
base.compClass = typeof(CompBodyAnimator);
}
}
}