diff options
Diffstat (limited to 'Client/Assets/Scripts/XMainClient/KKSG/QueryRoleStateAck.cs')
-rw-r--r-- | Client/Assets/Scripts/XMainClient/KKSG/QueryRoleStateAck.cs | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/Client/Assets/Scripts/XMainClient/KKSG/QueryRoleStateAck.cs b/Client/Assets/Scripts/XMainClient/KKSG/QueryRoleStateAck.cs new file mode 100644 index 00000000..b3fb452b --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/KKSG/QueryRoleStateAck.cs @@ -0,0 +1,40 @@ +using System;
+using System.Collections.Generic;
+using ProtoBuf;
+
+namespace KKSG
+{
+ [ProtoContract(Name = "QueryRoleStateAck")]
+ [Serializable]
+ public class QueryRoleStateAck : IExtensible
+ {
+ [ProtoMember(1, Name = "roleids", DataFormat = DataFormat.TwosComplement)]
+ public List<ulong> roleids
+ {
+ get
+ {
+ return this._roleids;
+ }
+ }
+
+ [ProtoMember(2, Name = "state", DataFormat = DataFormat.TwosComplement)]
+ public List<uint> state
+ {
+ get
+ {
+ return this._state;
+ }
+ }
+
+ private readonly List<ulong> _roleids = new List<ulong>();
+
+ private readonly List<uint> _state = new List<uint>();
+
+ private IExtension extensionObject;
+
+ IExtension IExtensible.GetExtensionObject(bool createIfMissing)
+ {
+ return Extensible.GetExtensionObject(ref this.extensionObject, createIfMissing);
+ }
+ }
+}
|