summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/XMainClient/KKSG/XSkillSlot.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Client/Assets/Scripts/XMainClient/KKSG/XSkillSlot.cs')
-rw-r--r--Client/Assets/Scripts/XMainClient/KKSG/XSkillSlot.cs36
1 files changed, 36 insertions, 0 deletions
diff --git a/Client/Assets/Scripts/XMainClient/KKSG/XSkillSlot.cs b/Client/Assets/Scripts/XMainClient/KKSG/XSkillSlot.cs
new file mode 100644
index 00000000..6e991fcb
--- /dev/null
+++ b/Client/Assets/Scripts/XMainClient/KKSG/XSkillSlot.cs
@@ -0,0 +1,36 @@
+using System;
+using ProtoBuf;
+
+namespace KKSG
+{
+ [ProtoContract(Name = "XSkillSlot")]
+ public enum XSkillSlot
+ {
+ [ProtoEnum(Name = "Normal_Attack", Value = 0)]
+ Normal_Attack,
+ [ProtoEnum(Name = "Dash_Attack", Value = 1)]
+ Dash_Attack,
+ [ProtoEnum(Name = "Skill_1_Attack", Value = 2)]
+ Skill_1_Attack,
+ [ProtoEnum(Name = "Skill_2_Attack", Value = 3)]
+ Skill_2_Attack,
+ [ProtoEnum(Name = "Skill_3_Attack", Value = 4)]
+ Skill_3_Attack,
+ [ProtoEnum(Name = "Skill_4_Attack", Value = 5)]
+ Skill_4_Attack,
+ [ProtoEnum(Name = "Skill_5_Attack", Value = 6)]
+ Skill_5_Attack,
+ [ProtoEnum(Name = "Skill_1_Buff", Value = 7)]
+ Skill_1_Buff,
+ [ProtoEnum(Name = "Skill_2_Buff", Value = 8)]
+ Skill_2_Buff,
+ [ProtoEnum(Name = "Ultra_Attack", Value = 9)]
+ Ultra_Attack,
+ [ProtoEnum(Name = "Awake_Attack", Value = 10)]
+ Awake_Attack,
+ [ProtoEnum(Name = "NULL_Key", Value = 11)]
+ NULL_Key,
+ [ProtoEnum(Name = "Attack_Max", Value = 12)]
+ Attack_Max
+ }
+}