This commit is contained in:
niko
2026-06-04 11:42:34 +02:00
parent f39ba70a9f
commit e720b98cd1
7488 changed files with 2493818 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
using System;
using Google.Protobuf.Reflection;
namespace Google.Protobuf
{
// Token: 0x0200000B RID: 11
public interface IMessage
{
// Token: 0x060000C1 RID: 193
void MergeFrom(CodedInputStream input);
// Token: 0x060000C2 RID: 194
void WriteTo(CodedOutputStream output);
// Token: 0x060000C3 RID: 195
int CalculateSize();
// Token: 0x17000014 RID: 20
// (get) Token: 0x060000C4 RID: 196
MessageDescriptor Descriptor { get; }
}
}