recrownedathenaeum/RecrownedAthenaeum.Pipeline/NinePatch/NinePatchImporter.cs
2019-01-15 17:44:15 -06:00

15 lines
457 B
C#

using Microsoft.Xna.Framework.Content.Pipeline;
using System.IO;
namespace RecrownedAthenaeum.Pipeline.NinePatch
{
[ContentImporter(".9p", DisplayName = "Nine Patch Importer", DefaultProcessor = "NinePatchProcessor")]
internal class NinePatchImporter : ContentImporter<string>
{
public override string Import(string filename, ContentImporterContext context)
{
return File.ReadAllText(filename);
}
}
}