diff options
author | chai <chaifix@163.com> | 2021-01-25 14:28:30 +0800 |
---|---|---|
committer | chai <chaifix@163.com> | 2021-01-25 14:28:30 +0800 |
commit | 6eb915c129fc90c6f4c82ae097dd6ffad5239efc (patch) | |
tree | 7dd2be50edf41f36b60fac84696e731c13afe617 /Client/Assets/Scripts/XMainClient/KKSG/GprOneBattleEnd.cs |
+scripts
Diffstat (limited to 'Client/Assets/Scripts/XMainClient/KKSG/GprOneBattleEnd.cs')
-rw-r--r-- | Client/Assets/Scripts/XMainClient/KKSG/GprOneBattleEnd.cs | 73 |
1 files changed, 73 insertions, 0 deletions
diff --git a/Client/Assets/Scripts/XMainClient/KKSG/GprOneBattleEnd.cs b/Client/Assets/Scripts/XMainClient/KKSG/GprOneBattleEnd.cs new file mode 100644 index 00000000..1cc3ef68 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/KKSG/GprOneBattleEnd.cs @@ -0,0 +1,73 @@ +using System;
+using System.Collections.Generic;
+using System.ComponentModel;
+using ProtoBuf;
+
+namespace KKSG
+{
+ [ProtoContract(Name = "GprOneBattleEnd")]
+ [Serializable]
+ public class GprOneBattleEnd : IExtensible
+ {
+ [ProtoMember(1, IsRequired = false, Name = "winguild", DataFormat = DataFormat.Default)]
+ [DefaultValue(null)]
+ public GmfGuildBrief winguild
+ {
+ get
+ {
+ return this._winguild;
+ }
+ set
+ {
+ this._winguild = value;
+ }
+ }
+
+ [ProtoMember(2, IsRequired = false, Name = "loseguild", DataFormat = DataFormat.Default)]
+ [DefaultValue(null)]
+ public GmfGuildBrief loseguild
+ {
+ get
+ {
+ return this._loseguild;
+ }
+ set
+ {
+ this._loseguild = value;
+ }
+ }
+
+ [ProtoMember(3, Name = "winrolecombat", DataFormat = DataFormat.Default)]
+ public List<GmfRoleCombat> winrolecombat
+ {
+ get
+ {
+ return this._winrolecombat;
+ }
+ }
+
+ [ProtoMember(4, Name = "loserolecombat", DataFormat = DataFormat.Default)]
+ public List<GmfRoleCombat> loserolecombat
+ {
+ get
+ {
+ return this._loserolecombat;
+ }
+ }
+
+ private GmfGuildBrief _winguild = null;
+
+ private GmfGuildBrief _loseguild = null;
+
+ private readonly List<GmfRoleCombat> _winrolecombat = new List<GmfRoleCombat>();
+
+ private readonly List<GmfRoleCombat> _loserolecombat = new List<GmfRoleCombat>();
+
+ private IExtension extensionObject;
+
+ IExtension IExtensible.GetExtensionObject(bool createIfMissing)
+ {
+ return Extensible.GetExtensionObject(ref this.extensionObject, createIfMissing);
+ }
+ }
+}
|