diff options
Diffstat (limited to 'Client/Assets/Scripts/XMainClient/XCampDuelRankInfo.cs')
-rw-r--r-- | Client/Assets/Scripts/XMainClient/XCampDuelRankInfo.cs | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/Client/Assets/Scripts/XMainClient/XCampDuelRankInfo.cs b/Client/Assets/Scripts/XMainClient/XCampDuelRankInfo.cs new file mode 100644 index 00000000..e298acd8 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/XCampDuelRankInfo.cs @@ -0,0 +1,16 @@ +using System;
+using KKSG;
+
+namespace XMainClient
+{
+ public class XCampDuelRankInfo : XBaseRankInfo
+ {
+ public override void ProcessData(RankData data)
+ {
+ this.id = data.RoleId;
+ this.value = (ulong)data.powerpoint;
+ this.name = data.RoleName;
+ this.rank = data.Rank;
+ }
+ }
+}
|