Files
quro-animation-tools/AnimationLibrary/AnimationSet.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

10 lines
168 B
C#

using System.Collections.Generic;
namespace QURO.AnimationLibrary
{
public class AnimationSet
{
public Dictionary<string, Animation> Anims;
}
}