diff options
Diffstat (limited to 'Client/Assets/Scripts/XMainClient/KKSG/LoginRewardState.cs')
-rw-r--r-- | Client/Assets/Scripts/XMainClient/KKSG/LoginRewardState.cs | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/Client/Assets/Scripts/XMainClient/KKSG/LoginRewardState.cs b/Client/Assets/Scripts/XMainClient/KKSG/LoginRewardState.cs new file mode 100644 index 00000000..1843efa3 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/KKSG/LoginRewardState.cs @@ -0,0 +1,16 @@ +using System;
+using ProtoBuf;
+
+namespace KKSG
+{
+ [ProtoContract(Name = "LoginRewardState")]
+ public enum LoginRewardState
+ {
+ [ProtoEnum(Name = "LOGINRS_CANNOT", Value = 1)]
+ LOGINRS_CANNOT = 1,
+ [ProtoEnum(Name = "LOGINRS_HAVEHOT", Value = 2)]
+ LOGINRS_HAVEHOT,
+ [ProtoEnum(Name = "LOGINRS_HAVE", Value = 3)]
+ LOGINRS_HAVE
+ }
+}
|