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