22 lines
700 B
C#
22 lines
700 B
C#
using Microsoft.Xna.Framework.Content.Pipeline;
|
|
using Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler;
|
|
using Newtonsoft.Json;
|
|
using RecrownedAthenaeum.Data;
|
|
|
|
namespace RecrownedAthenaeum.Pipeline.TextureAtlas
|
|
{
|
|
[ContentTypeWriter]
|
|
class TextureAtlasWriter : ContentTypeWriter<TextureAtlasData>
|
|
{
|
|
public override string GetRuntimeReader(TargetPlatform targetPlatform)
|
|
{
|
|
return "RecrownedAthenaeum.ContentReaders.TextureAtlasDataReader, RecrownedAthenaeum";
|
|
}
|
|
|
|
protected override void Write(ContentWriter output, TextureAtlasData value)
|
|
{
|
|
output.Write(JsonConvert.SerializeObject(value));
|
|
}
|
|
}
|
|
}
|