summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/XMainClient/KKSG/WeekEnd4v4BattleAllRoleData.cs
blob: 9635b5f2f7d734b0b662bf3e6e1310a11b3c556f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
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);
		}
	}
}