1
0
mirror of synced 2024-12-03 19:47:29 +01:00
Switch-Toolbox/Switch_Toolbox_Library/Animations/AnimationRewrite/STAnimation.cs

20 lines
453 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Toolbox.Library.Animations
{
/// <summary>
/// Represents a class for animating a skeleton
/// </summary>
public class STSkeletonAnimation
{
/// <summary>
/// The total amount of frames to play in the animation
/// </summary>
public uint FrameCount { get; set; }
}
}