upm_guru_kcp/Runtime/Protobuf-net/Compiler/CompilerDelegates.cs

7 lines
217 B
C#
Raw Normal View History

2023-08-30 05:50:21 +00:00
#if FEAT_COMPILER
namespace ProtoBuf.Compiler
{
internal delegate void ProtoSerializer(object value, ProtoWriter dest);
internal delegate object ProtoDeserializer(object value, ProtoReader source);
}
#endif