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