1
0
mirror of synced 2025-02-07 23:21:22 +01:00

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; }
}
}