mirror of
https://gitgud.io/AbstractConcept/rimworld-animations-patch.git
synced 2024-08-15 00:43:27 +00:00
30 lines
826 B
C#
30 lines
826 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
using HarmonyLib;
|
|||
|
using Rimworld_Animations;
|
|||
|
using Verse;
|
|||
|
|
|||
|
namespace Rimworld_Animations_Patch
|
|||
|
{
|
|||
|
public class ActorAnimationData
|
|||
|
{
|
|||
|
public AnimationDef animationDef = null;
|
|||
|
public int actorID = 0;
|
|||
|
public int currentStage = 0;
|
|||
|
public int stageTicks = 0;
|
|||
|
public Rot4 actorFacing = Rot4.South;
|
|||
|
|
|||
|
public ActorAnimationData(AnimationDef animationDef, int actorID, int currentStage, int stageTicks, Rot4 actorFacing)
|
|||
|
{
|
|||
|
this.animationDef = animationDef;
|
|||
|
this.actorID = actorID;
|
|||
|
this.currentStage = currentStage;
|
|||
|
this.stageTicks = stageTicks;
|
|||
|
this.actorFacing = actorFacing;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|