From 6eb915c129fc90c6f4c82ae097dd6ffad5239efc Mon Sep 17 00:00:00 2001 From: chai Date: Mon, 25 Jan 2021 14:28:30 +0800 Subject: +scripts --- .../Assets/Scripts/XMainClient/KKSG/XSkillSlot.cs | 36 ++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 Client/Assets/Scripts/XMainClient/KKSG/XSkillSlot.cs (limited to 'Client/Assets/Scripts/XMainClient/KKSG/XSkillSlot.cs') 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 + } +} -- cgit v1.1-26-g67d0