rimworld-animations/1.3/Source/Comps/CompProperties_ThingAnimato...

18 lines
365 B
C#
Raw Normal View History

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