Archived
forked from RDTKEditor/RDTKEditor
21 lines
665 B
C#
21 lines
665 B
C#
using RhythmBase.Components.RichText;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using Newtonsoft.Json;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace RhythmBase.Converters
|
|
{
|
|
internal class DialogueListConverter : JsonConverter<RDDialogueExchange>
|
|
{
|
|
public override RDDialogueExchange? ReadJson(JsonReader reader, Type objectType, RDDialogueExchange? existingValue, bool hasExistingValue, JsonSerializer serializer)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public override void WriteJson(JsonWriter writer, RDDialogueExchange? value, JsonSerializer serializer) => writer.WriteRawValue(value?.Serialize());
|
|
}
|
|
}
|