10 lines
168 B
C#
10 lines
168 B
C#
using System.Collections.Generic;
|
|
|
|
namespace QURO.AnimationLibrary
|
|
{
|
|
public class AnimationSet
|
|
{
|
|
public Dictionary<string, Animation> Anims;
|
|
}
|
|
}
|