rimworld-animations/1.5/Source/Keyframes/ExtendedKeyframe.cs

20 lines
348 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 Rot4 rotation;
public SoundDef sound = null;
public bool visible;
}
}