blob: bf605a0f3ddddd2fe52b302d80b6ed6eea8276a4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
using System;
using KKSG;
namespace XMainClient
{
public class XGuildMemberRankInfo : XBaseRankInfo
{
public void ProcessData(RoleGuildContribute info)
{
this.id = info.roleId;
this.value = (ulong)info.contribute;
this.name = info.RoleName;
this.formatname = XTitleDocument.GetTitleWithFormat(0u, info.RoleName);
}
}
}
|