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