Files
quro-animation-tools/AnimationLibrary/Animation.cs
T
quinnvoker 65ed454707 Animation System Implemented
System is prepared to read its animations from an AnimationSet object now.
2018-11-17 12:32:14 -08:00

18 lines
374 B
C#

using Microsoft.Xna.Framework;
namespace QURO.AnimationLibrary
{
public class Animation
{
public string Name { get; set; }
public bool IsLooping { get; set; }
public float Delay { get; set; }
public Rectangle[] Frames { get; set; }
public bool IsStillImage => Frames.Length <= 1;
public Animation() { }
}
}