preferences now use object as type for serialization and no longer uses marker interface.
This commit is contained in:
@@ -8,14 +8,14 @@ using System.Threading.Tasks;
|
||||
|
||||
namespace RecrownedAthenaeum.Pipeline.TextureAtlas
|
||||
{
|
||||
class TextureAtlasWriter : ContentTypeWriter<TextureAtlasTemplate>
|
||||
class TextureAtlasWriter : ContentTypeWriter<TextureAtlasFile>
|
||||
{
|
||||
public override string GetRuntimeReader(TargetPlatform targetPlatform)
|
||||
{
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
|
||||
protected override void Write(ContentWriter output, TextureAtlasTemplate value)
|
||||
protected override void Write(ContentWriter output, TextureAtlasFile value)
|
||||
{
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user