rimworld-animations/1.6/Source/Animations/Keyframes/ExtendedKeyframe.cs
2025-09-02 08:42:53 -07:00

19 lines
437 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using UnityEngine;
using Verse;
namespace Rimworld_Animations
{
public class ExtendedKeyframe : Verse.Keyframe
{
public int? variant;
public Rot4 rotation = Rot4.North;
public SoundDef sound = null;
public VoiceTagDef voice = null;
public bool visible = false;
}
}