blob: d44293c256cef8031de800bc569c229326145a11 (
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
30
31
32
33
|
using System;
using KKSG;
namespace XMainClient
{
internal class XDragonGuildListData : XDragonGuildBaseData
{
public bool bIsApplying;
public bool bNeedApprove;
public uint requiredPPT;
public static int[] DefaultSortDirection = new int[]
{
1,
-1,
-1,
-1,
1,
1,
1
};
public override void Init(DragonGuildInfo info)
{
base.Init(info);
this.bIsApplying = info.isSendApplication;
this.requiredPPT = info.recruitppt;
this.bNeedApprove = info.needapproval;
}
}
}
|