summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/XMainClient/KKSG/NotifyLeagueTeamCreate.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Client/Assets/Scripts/XMainClient/KKSG/NotifyLeagueTeamCreate.cs')
-rw-r--r--Client/Assets/Scripts/XMainClient/KKSG/NotifyLeagueTeamCreate.cs117
1 files changed, 117 insertions, 0 deletions
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<ulong> members
+ {
+ get
+ {
+ return this._members;
+ }
+ }
+
+ private ulong? _league_teamid;
+
+ private string _name;
+
+ private readonly List<ulong> _members = new List<ulong>();
+
+ 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);
+ }
+ }
+}