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