diff options
Diffstat (limited to 'Client/Assets/Scripts/XMainClient/KKSG/WorldLevel.cs')
-rw-r--r-- | Client/Assets/Scripts/XMainClient/KKSG/WorldLevel.cs | 62 |
1 files changed, 62 insertions, 0 deletions
diff --git a/Client/Assets/Scripts/XMainClient/KKSG/WorldLevel.cs b/Client/Assets/Scripts/XMainClient/KKSG/WorldLevel.cs new file mode 100644 index 00000000..ba4990c8 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/KKSG/WorldLevel.cs @@ -0,0 +1,62 @@ +using System;
+using System.ComponentModel;
+using System.Xml.Serialization;
+using ProtoBuf;
+
+namespace KKSG
+{
+ [ProtoContract(Name = "WorldLevel")]
+ [Serializable]
+ public class WorldLevel : IExtensible
+ {
+ [ProtoMember(1, IsRequired = false, Name = "worldLevel", DataFormat = DataFormat.TwosComplement)]
+ public uint worldLevel
+ {
+ get
+ {
+ return this._worldLevel ?? 0u;
+ }
+ set
+ {
+ this._worldLevel = new uint?(value);
+ }
+ }
+
+ [XmlIgnore]
+ [Browsable(false)]
+ public bool worldLevelSpecified
+ {
+ get
+ {
+ return this._worldLevel != null;
+ }
+ set
+ {
+ bool flag = value == (this._worldLevel == null);
+ if (flag)
+ {
+ this._worldLevel = (value ? new uint?(this.worldLevel) : null);
+ }
+ }
+ }
+
+ private uint? _worldLevel;
+
+ private IExtension extensionObject;
+
+ private bool ShouldSerializeworldLevel()
+ {
+ return this.worldLevelSpecified;
+ }
+
+ private void ResetworldLevel()
+ {
+ this.worldLevelSpecified = false;
+ }
+
+ IExtension IExtensible.GetExtensionObject(bool createIfMissing)
+ {
+ return Extensible.GetExtensionObject(ref this.extensionObject, createIfMissing);
+ }
+ }
+}
|