recrownedathenaeum/RecrownedAthenaeum.Pipeline/TextureAtlas/TextureAtlasImporter.cs
2019-01-15 17:44:15 -06:00

16 lines
506 B
C#

using Microsoft.Xna.Framework.Content.Pipeline;
using System.IO;
using TImport = System.String;
namespace RecrownedAthenaeum.Pipeline.TextureAtlas
{
[ContentImporter(".tatlas", DisplayName = "Texture Atlas Importer", DefaultProcessor = "TextureAtlasProcessor")]
internal class TextureAtlasImporter : ContentImporter<TImport>
{
public override TImport Import(string filename, ContentImporterContext context)
{
return File.ReadAllText(filename);
}
}
}