diff options
Diffstat (limited to 'Client/Assets/Scripts/XMainClient/XUltraSkill.cs')
-rw-r--r-- | Client/Assets/Scripts/XMainClient/XUltraSkill.cs | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/Client/Assets/Scripts/XMainClient/XUltraSkill.cs b/Client/Assets/Scripts/XMainClient/XUltraSkill.cs new file mode 100644 index 00000000..7e0a5290 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/XUltraSkill.cs @@ -0,0 +1,15 @@ +using System;
+
+namespace XMainClient
+{
+ internal sealed class XUltraSkill : XArtsSkill
+ {
+ public override int SkillType
+ {
+ get
+ {
+ return 2;
+ }
+ }
+ }
+}
|