summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/XMainClient/XFashionRankInfo.cs
blob: 5108665b3796215882d1512c9e1f34e3b6bfc08f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
using System;
using KKSG;

namespace XMainClient
{
	public class XFashionRankInfo : XBaseRankInfo
	{
		public override void ProcessData(RankData data)
		{
			this.name = data.RoleName;
			this.formatname = XTitleDocument.GetTitleWithFormat(data.titleID, XBaseRankInfo.GetUnderLineName(this.name));
			this.id = data.RoleId;
			this.rank = data.Rank;
			this.value = (ulong)data.powerpoint;
			this.guildicon = data.guildicon;
			this.guildname = data.guildname;
			this.startType = data.starttype;
		}
	}
}