mirror of
https://github.com/vrm-c/UniVRM.git
synced 2026-05-10 04:31:43 -05:00
18 lines
410 B
C#
18 lines
410 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Reflection;
|
|
|
|
|
|
namespace UniJSON
|
|
{
|
|
public static class ListTreeNodeDeserializerExtensions
|
|
{
|
|
public static void Deserialize<T, U>(this ListTreeNode<T> self, ref U value)
|
|
where T : IListTreeItem, IValue<T>
|
|
{
|
|
GenericDeserializer<T, U>.Deserialize(self, ref value);
|
|
}
|
|
}
|
|
}
|