summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/XMainClient/XSkyArenaList.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Client/Assets/Scripts/XMainClient/XSkyArenaList.cs')
-rw-r--r--Client/Assets/Scripts/XMainClient/XSkyArenaList.cs17
1 files changed, 17 insertions, 0 deletions
diff --git a/Client/Assets/Scripts/XMainClient/XSkyArenaList.cs b/Client/Assets/Scripts/XMainClient/XSkyArenaList.cs
new file mode 100644
index 00000000..27c21e3f
--- /dev/null
+++ b/Client/Assets/Scripts/XMainClient/XSkyArenaList.cs
@@ -0,0 +1,17 @@
+using System;
+
+namespace XMainClient
+{
+ public class XSkyArenaList : XBaseRankList
+ {
+ public XSkyArenaList()
+ {
+ this.type = XRankType.SkyArenaRank;
+ }
+
+ public override XBaseRankInfo CreateNewInfo()
+ {
+ return new XSkyArenaRankInfo();
+ }
+ }
+}