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