using Microsoft.Xna.Framework.Content.Pipeline; using Newtonsoft.Json; using System.IO; namespace RecrownedAthenaeum.Pipeline.TextureAtlas { [ContentImporter(".tatlas", DisplayName = "Texture Atlas Importer")] internal class TextureAtlasImporter : ContentImporter { public override TextureAtlasData Import(string filename, ContentImporterContext context) { TextureAtlasData atlas; using (StreamReader stream = new StreamReader(filename)) { atlas = JsonConvert.DeserializeObject(stream.ReadToEnd()); } context.AddDependency(atlas.textureName); return atlas; } } }