summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/XMainClient/KKSG/LBEleRoomState.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Client/Assets/Scripts/XMainClient/KKSG/LBEleRoomState.cs')
-rw-r--r--Client/Assets/Scripts/XMainClient/KKSG/LBEleRoomState.cs16
1 files changed, 16 insertions, 0 deletions
diff --git a/Client/Assets/Scripts/XMainClient/KKSG/LBEleRoomState.cs b/Client/Assets/Scripts/XMainClient/KKSG/LBEleRoomState.cs
new file mode 100644
index 00000000..044b865c
--- /dev/null
+++ b/Client/Assets/Scripts/XMainClient/KKSG/LBEleRoomState.cs
@@ -0,0 +1,16 @@
+using System;
+using ProtoBuf;
+
+namespace KKSG
+{
+ [ProtoContract(Name = "LBEleRoomState")]
+ public enum LBEleRoomState
+ {
+ [ProtoEnum(Name = "LBEleRoomState_Idle", Value = 1)]
+ LBEleRoomState_Idle = 1,
+ [ProtoEnum(Name = "LBEleRoomState_Fighting", Value = 2)]
+ LBEleRoomState_Fighting,
+ [ProtoEnum(Name = "LBEleRoomState_Finish", Value = 3)]
+ LBEleRoomState_Finish
+ }
+}