summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/XMainClient/KKSG/RiskBoxState.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Client/Assets/Scripts/XMainClient/KKSG/RiskBoxState.cs')
-rw-r--r--Client/Assets/Scripts/XMainClient/KKSG/RiskBoxState.cs20
1 files changed, 20 insertions, 0 deletions
diff --git a/Client/Assets/Scripts/XMainClient/KKSG/RiskBoxState.cs b/Client/Assets/Scripts/XMainClient/KKSG/RiskBoxState.cs
new file mode 100644
index 00000000..34bfb568
--- /dev/null
+++ b/Client/Assets/Scripts/XMainClient/KKSG/RiskBoxState.cs
@@ -0,0 +1,20 @@
+using System;
+using ProtoBuf;
+
+namespace KKSG
+{
+ [ProtoContract(Name = "RiskBoxState")]
+ public enum RiskBoxState
+ {
+ [ProtoEnum(Name = "RISK_BOX_LOCKED", Value = 1)]
+ RISK_BOX_LOCKED = 1,
+ [ProtoEnum(Name = "RISK_BOX_UNLOCKED", Value = 2)]
+ RISK_BOX_UNLOCKED,
+ [ProtoEnum(Name = "RISK_BOX_CANGETREWARD", Value = 3)]
+ RISK_BOX_CANGETREWARD,
+ [ProtoEnum(Name = "RISK_BOX_GETREWARD", Value = 4)]
+ RISK_BOX_GETREWARD,
+ [ProtoEnum(Name = "RISK_BOX_DELETE", Value = 5)]
+ RISK_BOX_DELETE
+ }
+}