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