diff options
Diffstat (limited to 'Client/Assets/Scripts/XMainClient/KKSG/HeroBattleAncientPowerData.cs')
-rw-r--r-- | Client/Assets/Scripts/XMainClient/KKSG/HeroBattleAncientPowerData.cs | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/Client/Assets/Scripts/XMainClient/KKSG/HeroBattleAncientPowerData.cs b/Client/Assets/Scripts/XMainClient/KKSG/HeroBattleAncientPowerData.cs new file mode 100644 index 00000000..c19cce76 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/KKSG/HeroBattleAncientPowerData.cs @@ -0,0 +1,40 @@ +using System;
+using System.Collections.Generic;
+using ProtoBuf;
+
+namespace KKSG
+{
+ [ProtoContract(Name = "HeroBattleAncientPowerData")]
+ [Serializable]
+ public class HeroBattleAncientPowerData : IExtensible
+ {
+ [ProtoMember(1, Name = "roleids", DataFormat = DataFormat.TwosComplement)]
+ public List<ulong> roleids
+ {
+ get
+ {
+ return this._roleids;
+ }
+ }
+
+ [ProtoMember(2, Name = "ancientpower", DataFormat = DataFormat.TwosComplement)]
+ public List<double> ancientpower
+ {
+ get
+ {
+ return this._ancientpower;
+ }
+ }
+
+ private readonly List<ulong> _roleids = new List<ulong>();
+
+ private readonly List<double> _ancientpower = new List<double>();
+
+ private IExtension extensionObject;
+
+ IExtension IExtensible.GetExtensionObject(bool createIfMissing)
+ {
+ return Extensible.GetExtensionObject(ref this.extensionObject, createIfMissing);
+ }
+ }
+}
|