diff options
author | chai <chaifix@163.com> | 2021-01-25 14:28:30 +0800 |
---|---|---|
committer | chai <chaifix@163.com> | 2021-01-25 14:28:30 +0800 |
commit | 6eb915c129fc90c6f4c82ae097dd6ffad5239efc (patch) | |
tree | 7dd2be50edf41f36b60fac84696e731c13afe617 /Client/Assets/Scripts/XMainClient/KKSG/XSkillSlot.cs |
+scripts
Diffstat (limited to 'Client/Assets/Scripts/XMainClient/KKSG/XSkillSlot.cs')
-rw-r--r-- | Client/Assets/Scripts/XMainClient/KKSG/XSkillSlot.cs | 36 |
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
+ }
+}
|