mirror of
https://github.com/AlexMacocian/MonoGame.Extended.git
synced 2026-07-22 18:29:30 +00:00
15 lines
383 B
C#
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>();
|
|
}
|
|
}
|
|
} |