Implementation Working

Used AnimationGenerator to port old animations into new system, tested and seems stable.
This commit is contained in:
quinnvoker
2018-11-17 14:55:38 -08:00
parent 65ed454707
commit fb85769677
12 changed files with 472 additions and 10 deletions
+18
View File
@@ -0,0 +1,18 @@
using Microsoft.Xna.Framework;
namespace QURO.AnimationLibrary
{
public class Frame
{
public Rectangle SourceRect { get; set; }
public float Delay { get; set; }
public Frame() { }
public Frame(Rectangle sourceRectangle, float delay)
{
SourceRect = sourceRectangle;
Delay = delay;
}
}
}