Files
2024-05-18 19:59:41 -04:00

15 lines
383 B
C#

using System.Collections.Generic;
namespace MonoGame.Extended.Content.Pipeline.Animations
{
public class AstridAnimatorFile
{
public string TextureAtlas { get; set; }
public List<AstridAnimatorAnimation> Animations { get; set; }
public AstridAnimatorFile()
{
Animations = new List<AstridAnimatorAnimation>();
}
}
}