mirror of
https://github.com/AlexMacocian/MonoGame.Extended.git
synced 2026-07-26 00:45:20 +00:00
14 lines
355 B
C#
14 lines
355 B
C#
using System.Collections.Generic;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace MonoGame.Extended.Content.Pipeline.TextureAtlases
|
|
{
|
|
public class TexturePackerFile
|
|
{
|
|
[JsonProperty("frames")]
|
|
public List<TexturePackerRegion> Regions { get; set; }
|
|
|
|
[JsonProperty("meta")]
|
|
public TexturePackerMeta Metadata { get; set; }
|
|
}
|
|
} |