20 lines
453 B
C#
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; }
|
|
}
|
|
}
|