blob: f71ced5f9dfdee5eae25464ac1e9a01ce6fe82d4 (
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
|
using System;
using KKSG;
namespace XMainClient
{
public class XSkyArenaRankInfo : XBaseRankInfo
{
public uint profession;
public uint kill;
public uint floor;
public override void ProcessData(RankData data)
{
this.rank = data.Rank;
bool flag = data.skycity == null;
if (!flag)
{
this.id = data.skycity.roleid;
this.name = data.skycity.rolename;
this.floor = data.skycity.floor;
this.kill = data.skycity.killer;
this.profession = data.skycity.job;
}
}
}
}
|