AstridAnimatorFile.cs 383 B

123456789101112131415
  1. using System.Collections.Generic;
  2. namespace MonoGame.Extended.Content.Pipeline.Animations
  3. {
  4. public class AstridAnimatorFile
  5. {
  6. public string TextureAtlas { get; set; }
  7. public List<AstridAnimatorAnimation> Animations { get; set; }
  8. public AstridAnimatorFile()
  9. {
  10. Animations = new List<AstridAnimatorAnimation>();
  11. }
  12. }
  13. }