mirror of
https://github.com/vrm-c/UniVRM.git
synced 2026-05-20 09:47:56 -05:00
23 lines
501 B
C#
23 lines
501 B
C#
using System;
|
|
using System.IO;
|
|
|
|
namespace UniGLTF
|
|
{
|
|
public class ExtensionSerialization : IValueSerialization
|
|
{
|
|
public Type ValueType => typeof(object);
|
|
|
|
public bool IsInline => true;
|
|
|
|
public void GenerateDeserializer(StreamWriter writer, string callName)
|
|
{
|
|
throw new System.NotImplementedException();
|
|
}
|
|
|
|
public string GenerateDeserializerCall(string callName, string argName)
|
|
{
|
|
return argName;
|
|
}
|
|
}
|
|
}
|