mirror of
https://github.com/AlexMacocian/MonoGame.Extended.git
synced 2026-07-24 03:56:31 +00:00
13 lines
270 B
C#
13 lines
270 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace MonoGame.Extended.Content.Pipeline.TextureAtlases
|
|
{
|
|
public class TexturePackerSize
|
|
{
|
|
[JsonProperty("w")]
|
|
public int Width { get; set; }
|
|
|
|
[JsonProperty("h")]
|
|
public int Height { get; set; }
|
|
}
|
|
} |