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