diff options
Diffstat (limited to 'Client/Assets/Scripts/XMainClient/KKSG/LeagueBattleFightState.cs')
-rw-r--r-- | Client/Assets/Scripts/XMainClient/KKSG/LeagueBattleFightState.cs | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/Client/Assets/Scripts/XMainClient/KKSG/LeagueBattleFightState.cs b/Client/Assets/Scripts/XMainClient/KKSG/LeagueBattleFightState.cs new file mode 100644 index 00000000..c4877dce --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/KKSG/LeagueBattleFightState.cs @@ -0,0 +1,18 @@ +using System;
+using ProtoBuf;
+
+namespace KKSG
+{
+ [ProtoContract(Name = "LeagueBattleFightState")]
+ public enum LeagueBattleFightState
+ {
+ [ProtoEnum(Name = "LBFight_None", Value = 1)]
+ LBFight_None = 1,
+ [ProtoEnum(Name = "LBFight_Wait", Value = 2)]
+ LBFight_Wait,
+ [ProtoEnum(Name = "LBFight_Fight", Value = 3)]
+ LBFight_Fight,
+ [ProtoEnum(Name = "LBFight_Result", Value = 4)]
+ LBFight_Result
+ }
+}
|