blob: 765f2f24f5e1941308577570ac5c38f4ec687a57 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
 | 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>();
        }
    }
}
 |