blob: 18d888b8e2f594d59048ff2ea48ad958215489b6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
using System;
using ProtoBuf;
namespace KKSG
{
[ProtoContract(Name = "OpenGuildQAReq")]
[Serializable]
public class OpenGuildQAReq : IExtensible
{
private IExtension extensionObject;
IExtension IExtensible.GetExtensionObject(bool createIfMissing)
{
return Extensible.GetExtensionObject(ref this.extensionObject, createIfMissing);
}
}
}
|