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