using Microsoft.Xna.Framework.Content.Pipeline; using Microsoft.Xna.Framework.Graphics; using Newtonsoft.Json; using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Xml.Serialization; namespace RecrownedAthenaeum.Pipeline.TextureAtlas { [ContentImporter(".atlas", 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()); } return atlas; } } }