mirror of
https://gitgud.io/c0ffeeeeeeee/rimworld-animations.git
synced 2024-08-15 00:43:45 +00:00
19 lines
466 B
C#
19 lines
466 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using RimWorld;
|
|
using Verse;
|
|
|
|
namespace Rimworld_Animations {
|
|
public abstract class BaseAnimationClip
|
|
{
|
|
public List<ThingDef> types; //types of participants
|
|
public int duration;
|
|
public abstract void buildSimpleCurves();
|
|
public string soundDef = null; //for playing sounds
|
|
public int actor;
|
|
|
|
}
|
|
}
|