From 6eb915c129fc90c6f4c82ae097dd6ffad5239efc Mon Sep 17 00:00:00 2001 From: chai Date: Mon, 25 Jan 2021 14:28:30 +0800 Subject: +scripts --- .../Scripts/XMainClient/KKSG/BossRushReqStatus.cs | 24 ++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 Client/Assets/Scripts/XMainClient/KKSG/BossRushReqStatus.cs (limited to 'Client/Assets/Scripts/XMainClient/KKSG/BossRushReqStatus.cs') diff --git a/Client/Assets/Scripts/XMainClient/KKSG/BossRushReqStatus.cs b/Client/Assets/Scripts/XMainClient/KKSG/BossRushReqStatus.cs new file mode 100644 index 00000000..f2020d67 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/KKSG/BossRushReqStatus.cs @@ -0,0 +1,24 @@ +using System; +using ProtoBuf; + +namespace KKSG +{ + [ProtoContract(Name = "BossRushReqStatus")] + public enum BossRushReqStatus + { + [ProtoEnum(Name = "BOSSRUSH_RESULT_WIN", Value = 1)] + BOSSRUSH_RESULT_WIN = 1, + [ProtoEnum(Name = "BOSSRUSH_RESULT_FAILED", Value = 2)] + BOSSRUSH_RESULT_FAILED, + [ProtoEnum(Name = "BOSSRUSH_REQ_BASEDATA", Value = 3)] + BOSSRUSH_REQ_BASEDATA, + [ProtoEnum(Name = "BOSSRUSH_REQ_REFRESH", Value = 4)] + BOSSRUSH_REQ_REFRESH, + [ProtoEnum(Name = "BOSSRUSH_REQ_APPEARANCE", Value = 5)] + BOSSRUSH_REQ_APPEARANCE, + [ProtoEnum(Name = "BOSSRUSH_REQ_LEFTCOUNT", Value = 6)] + BOSSRUSH_REQ_LEFTCOUNT, + [ProtoEnum(Name = "BOSSRUSH_REQ_CONTINUE", Value = 7)] + BOSSRUSH_REQ_CONTINUE + } +} -- cgit v1.1-26-g67d0