Animation System Implemented

System is prepared to read its animations from an AnimationSet object now.
This commit is contained in:
quinnvoker
2018-11-17 12:32:14 -08:00
parent fee1757862
commit 65ed454707
6 changed files with 20 additions and 39 deletions
+9
View File
@@ -0,0 +1,9 @@
using System.Collections.Generic;
namespace QURO.AnimationLibrary
{
public class AnimationSet
{
public Dictionary<string, Animation> Anims;
}
}