From 6eb915c129fc90c6f4c82ae097dd6ffad5239efc Mon Sep 17 00:00:00 2001 From: chai Date: Mon, 25 Jan 2021 14:28:30 +0800 Subject: +scripts --- .../XMainClient/KKSG/NotifyLeagueTeamCreate.cs | 117 +++++++++++++++++++++ 1 file changed, 117 insertions(+) create mode 100644 Client/Assets/Scripts/XMainClient/KKSG/NotifyLeagueTeamCreate.cs (limited to 'Client/Assets/Scripts/XMainClient/KKSG/NotifyLeagueTeamCreate.cs') diff --git a/Client/Assets/Scripts/XMainClient/KKSG/NotifyLeagueTeamCreate.cs b/Client/Assets/Scripts/XMainClient/KKSG/NotifyLeagueTeamCreate.cs new file mode 100644 index 00000000..03b9cd8a --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/KKSG/NotifyLeagueTeamCreate.cs @@ -0,0 +1,117 @@ +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Xml.Serialization; +using ProtoBuf; + +namespace KKSG +{ + [ProtoContract(Name = "NotifyLeagueTeamCreate")] + [Serializable] + public class NotifyLeagueTeamCreate : IExtensible + { + [ProtoMember(1, IsRequired = false, Name = "league_teamid", DataFormat = DataFormat.TwosComplement)] + public ulong league_teamid + { + get + { + return this._league_teamid ?? 0UL; + } + set + { + this._league_teamid = new ulong?(value); + } + } + + [XmlIgnore] + [Browsable(false)] + public bool league_teamidSpecified + { + get + { + return this._league_teamid != null; + } + set + { + bool flag = value == (this._league_teamid == null); + if (flag) + { + this._league_teamid = (value ? new ulong?(this.league_teamid) : null); + } + } + } + + [ProtoMember(2, IsRequired = false, Name = "name", DataFormat = DataFormat.Default)] + public string name + { + get + { + return this._name ?? ""; + } + set + { + this._name = value; + } + } + + [XmlIgnore] + [Browsable(false)] + public bool nameSpecified + { + get + { + return this._name != null; + } + set + { + bool flag = value == (this._name == null); + if (flag) + { + this._name = (value ? this.name : null); + } + } + } + + [ProtoMember(3, Name = "members", DataFormat = DataFormat.TwosComplement)] + public List members + { + get + { + return this._members; + } + } + + private ulong? _league_teamid; + + private string _name; + + private readonly List _members = new List(); + + private IExtension extensionObject; + + private bool ShouldSerializeleague_teamid() + { + return this.league_teamidSpecified; + } + + private void Resetleague_teamid() + { + this.league_teamidSpecified = false; + } + + private bool ShouldSerializename() + { + return this.nameSpecified; + } + + private void Resetname() + { + this.nameSpecified = false; + } + + IExtension IExtensible.GetExtensionObject(bool createIfMissing) + { + return Extensible.GetExtensionObject(ref this.extensionObject, createIfMissing); + } + } +} -- cgit v1.1-26-g67d0