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