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