diff options
Diffstat (limited to 'Client/Assets/Scripts/XMainClient/XDragonGuildListData.cs')
-rw-r--r-- | Client/Assets/Scripts/XMainClient/XDragonGuildListData.cs | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/Client/Assets/Scripts/XMainClient/XDragonGuildListData.cs b/Client/Assets/Scripts/XMainClient/XDragonGuildListData.cs new file mode 100644 index 00000000..d44293c2 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/XDragonGuildListData.cs @@ -0,0 +1,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;
+ }
+ }
+}
|