recrownedgtk/RecrownedAthenaeum.Pipeline/TextureAtlas/TextureAtlasTemplate.cs

23 lines
500 B
C#

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;
}
}
}