summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/XMainClient/KKSG/GetGuildPartyReceiveInfoArg.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Client/Assets/Scripts/XMainClient/KKSG/GetGuildPartyReceiveInfoArg.cs')
-rw-r--r--Client/Assets/Scripts/XMainClient/KKSG/GetGuildPartyReceiveInfoArg.cs17
1 files changed, 17 insertions, 0 deletions
diff --git a/Client/Assets/Scripts/XMainClient/KKSG/GetGuildPartyReceiveInfoArg.cs b/Client/Assets/Scripts/XMainClient/KKSG/GetGuildPartyReceiveInfoArg.cs
new file mode 100644
index 00000000..012febad
--- /dev/null
+++ b/Client/Assets/Scripts/XMainClient/KKSG/GetGuildPartyReceiveInfoArg.cs
@@ -0,0 +1,17 @@
+using System;
+using ProtoBuf;
+
+namespace KKSG
+{
+ [ProtoContract(Name = "GetGuildPartyReceiveInfoArg")]
+ [Serializable]
+ public class GetGuildPartyReceiveInfoArg : IExtensible
+ {
+ private IExtension extensionObject;
+
+ IExtension IExtensible.GetExtensionObject(bool createIfMissing)
+ {
+ return Extensible.GetExtensionObject(ref this.extensionObject, createIfMissing);
+ }
+ }
+}