blob: 19e30288fb37615e18e514f8ce77cd5b747c051c (
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 XGuildRankInfo : XBaseRankInfo
{
public string formatname2;
public string name2;
public uint exp;
public uint presitge;
public void ProcessData(GuildInfo guildInfo)
{
this.id = guildInfo.id;
this.value = (ulong)guildInfo.level;
this.presitge = guildInfo.prestige;
this.name = guildInfo.name;
this.formatname = XBaseRankInfo.GetUnderLineName(this.name);
this.name2 = guildInfo.leaderName;
this.formatname2 = XTitleDocument.GetTitleWithFormat(0u, guildInfo.leaderName);
this.exp = guildInfo.guildExp;
}
}
}
|