using Microsoft.Xna.Framework; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Xml.Serialization; namespace RecrownedAthenaeum.Pipeline.TextureAtlas { public class TextureAtlasTemplate { public string textureName; public TextureAtlasRegion[] regions; public class TextureAtlasRegion { public string name; public Rectangle location; } } }