blob: 0fb0db51c0c44b3ced50ad9f7905dbae587e0a28 (
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 KKSG;
namespace XMainClient
{
public class XQualifyingRankInfo : XBaseRankInfo
{
public uint rankScore;
public uint profession;
public uint totalNum;
public override void ProcessData(RankData data)
{
this.name = data.RoleName;
this.formatname = XBaseRankInfo.GetUnderLineName(this.name);
this.id = data.RoleId;
this.rank = data.Rank;
this.profession = data.profession;
this.rankScore = data.pkpoint;
bool flag = data.pkextradata != null;
if (flag)
{
this.totalNum = data.pkextradata.joincount;
}
}
}
}
|