rimworld-animations/1.3/Source/Animations/Keyframes/Keyframe.cs
AbstractConcept 8a7b542d17 Patch
2022-09-07 09:12:17 -05:00

15 lines
358 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Rimworld_Animations {
public abstract class Keyframe
{
public int tickDuration = 1;
public float? atTick;
public string soundEffect;
public List<string> tags = new List<string>();
}
}