blob: d7e8f17de77b245c2b9bcacb9b945a9e82c4b7b3 (
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 = "GetDragonGuildShopRecordArg")]
[Serializable]
public class GetDragonGuildShopRecordArg : IExtensible
{
private IExtension extensionObject;
IExtension IExtensible.GetExtensionObject(bool createIfMissing)
{
return Extensible.GetExtensionObject(ref this.extensionObject, createIfMissing);
}
}
}
|