diff options
author | chai <chaifix@163.com> | 2021-01-25 14:28:30 +0800 |
---|---|---|
committer | chai <chaifix@163.com> | 2021-01-25 14:28:30 +0800 |
commit | 6eb915c129fc90c6f4c82ae097dd6ffad5239efc (patch) | |
tree | 7dd2be50edf41f36b60fac84696e731c13afe617 /Client/Assets/Scripts/XMainClient/KKSG/CardMatchState.cs |
+scripts
Diffstat (limited to 'Client/Assets/Scripts/XMainClient/KKSG/CardMatchState.cs')
-rw-r--r-- | Client/Assets/Scripts/XMainClient/KKSG/CardMatchState.cs | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/Client/Assets/Scripts/XMainClient/KKSG/CardMatchState.cs b/Client/Assets/Scripts/XMainClient/KKSG/CardMatchState.cs new file mode 100644 index 00000000..057fab2e --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/KKSG/CardMatchState.cs @@ -0,0 +1,26 @@ +using System;
+using ProtoBuf;
+
+namespace KKSG
+{
+ [ProtoContract(Name = "CardMatchState")]
+ public enum CardMatchState
+ {
+ [ProtoEnum(Name = "CardMatch_StateBegin", Value = 0)]
+ CardMatch_StateBegin,
+ [ProtoEnum(Name = "CardMatch_StateWaiting", Value = 1)]
+ CardMatch_StateWaiting,
+ [ProtoEnum(Name = "CardMatch_StateRoundWaiting", Value = 2)]
+ CardMatch_StateRoundWaiting,
+ [ProtoEnum(Name = "CardMatch_StateRoundBegin", Value = 3)]
+ CardMatch_StateRoundBegin,
+ [ProtoEnum(Name = "CardMatch_StateRounding", Value = 4)]
+ CardMatch_StateRounding,
+ [ProtoEnum(Name = "CardMatch_StateRoundEnd", Value = 5)]
+ CardMatch_StateRoundEnd,
+ [ProtoEnum(Name = "CardMatch_StateEnd", Value = 6)]
+ CardMatch_StateEnd,
+ [ProtoEnum(Name = "CardMatch_StateDummy", Value = 7)]
+ CardMatch_StateDummy
+ }
+}
|