namespace Kav { public struct CrunchTextureAtlasData { public CrunchTextureAtlasTextureData[] Textures { get; set; } } public struct CrunchTextureAtlasTextureData { public string Name { get; set; } public CrunchTextureAtlasImageData[] Images { get; set; } } public struct CrunchTextureAtlasImageData { public string N { get; set; } public int X { get; set; } public int Y { get; set; } public int W { get; set; } public int H { get; set; } } }