mirror of
https://github.com/project-redbud/FunGame-Core.git
synced 2025-04-22 03:59:35 +08:00
12 lines
295 B
C#
12 lines
295 B
C#
using System.Text.Json;
|
|
|
|
namespace Milimoe.FunGame.Core.Interface.Base
|
|
{
|
|
public interface IEntityConverter<T>
|
|
{
|
|
public T NewInstance();
|
|
|
|
public void ReadPropertyName(ref Utf8JsonReader reader, string propertyName, JsonSerializerOptions options, ref T result);
|
|
}
|
|
}
|