From 6eb915c129fc90c6f4c82ae097dd6ffad5239efc Mon Sep 17 00:00:00 2001 From: chai Date: Mon, 25 Jan 2021 14:28:30 +0800 Subject: +scripts --- .../XMainClient/KKSG/InvFightBattleResult.cs | 105 +++++++++++++++++++++ 1 file changed, 105 insertions(+) create mode 100644 Client/Assets/Scripts/XMainClient/KKSG/InvFightBattleResult.cs (limited to 'Client/Assets/Scripts/XMainClient/KKSG/InvFightBattleResult.cs') diff --git a/Client/Assets/Scripts/XMainClient/KKSG/InvFightBattleResult.cs b/Client/Assets/Scripts/XMainClient/KKSG/InvFightBattleResult.cs new file mode 100644 index 00000000..ec32ee89 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/KKSG/InvFightBattleResult.cs @@ -0,0 +1,105 @@ +using System; +using System.ComponentModel; +using System.Xml.Serialization; +using ProtoBuf; + +namespace KKSG +{ + [ProtoContract(Name = "InvFightBattleResult")] + [Serializable] + public class InvFightBattleResult : IExtensible + { + [ProtoMember(1, IsRequired = false, Name = "resulttype", DataFormat = DataFormat.TwosComplement)] + public PkResultType resulttype + { + get + { + return this._resulttype ?? PkResultType.PkResult_Win; + } + set + { + this._resulttype = new PkResultType?(value); + } + } + + [XmlIgnore] + [Browsable(false)] + public bool resulttypeSpecified + { + get + { + return this._resulttype != null; + } + set + { + bool flag = value == (this._resulttype == null); + if (flag) + { + this._resulttype = (value ? new PkResultType?(this.resulttype) : null); + } + } + } + + [ProtoMember(2, IsRequired = false, Name = "opname", DataFormat = DataFormat.Default)] + public string opname + { + get + { + return this._opname ?? ""; + } + set + { + this._opname = value; + } + } + + [XmlIgnore] + [Browsable(false)] + public bool opnameSpecified + { + get + { + return this._opname != null; + } + set + { + bool flag = value == (this._opname == null); + if (flag) + { + this._opname = (value ? this.opname : null); + } + } + } + + private PkResultType? _resulttype; + + private string _opname; + + private IExtension extensionObject; + + private bool ShouldSerializeresulttype() + { + return this.resulttypeSpecified; + } + + private void Resetresulttype() + { + this.resulttypeSpecified = false; + } + + private bool ShouldSerializeopname() + { + return this.opnameSpecified; + } + + private void Resetopname() + { + this.opnameSpecified = false; + } + + IExtension IExtensible.GetExtensionObject(bool createIfMissing) + { + return Extensible.GetExtensionObject(ref this.extensionObject, createIfMissing); + } + } +} -- cgit v1.1-26-g67d0