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