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/CardMatchOp.cs |
+scripts
Diffstat (limited to 'Client/Assets/Scripts/XMainClient/KKSG/CardMatchOp.cs')
-rw-r--r-- | Client/Assets/Scripts/XMainClient/KKSG/CardMatchOp.cs | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/Client/Assets/Scripts/XMainClient/KKSG/CardMatchOp.cs b/Client/Assets/Scripts/XMainClient/KKSG/CardMatchOp.cs new file mode 100644 index 00000000..63c0d1a9 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/KKSG/CardMatchOp.cs @@ -0,0 +1,30 @@ +using System;
+using ProtoBuf;
+
+namespace KKSG
+{
+ [ProtoContract(Name = "CardMatchOp")]
+ public enum CardMatchOp
+ {
+ [ProtoEnum(Name = "CardMatch_Begin", Value = 0)]
+ CardMatch_Begin,
+ [ProtoEnum(Name = "CardMatch_Add", Value = 2)]
+ CardMatch_Add = 2,
+ [ProtoEnum(Name = "CardMatch_Del", Value = 3)]
+ CardMatch_Del,
+ [ProtoEnum(Name = "CardMatch_RoundBegin", Value = 4)]
+ CardMatch_RoundBegin,
+ [ProtoEnum(Name = "CardMatch_RoundChange", Value = 5)]
+ CardMatch_RoundChange,
+ [ProtoEnum(Name = "CardMatch_RoundEnd", Value = 6)]
+ CardMatch_RoundEnd,
+ [ProtoEnum(Name = "CardMatch_End", Value = 7)]
+ CardMatch_End,
+ [ProtoEnum(Name = "CardMatch_Query", Value = 8)]
+ CardMatch_Query,
+ [ProtoEnum(Name = "CardMatch_RoundWaiting", Value = 9)]
+ CardMatch_RoundWaiting,
+ [ProtoEnum(Name = "CardMatch_SignUp", Value = 10)]
+ CardMatch_SignUp
+ }
+}
|