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