From 6eb915c129fc90c6f4c82ae097dd6ffad5239efc Mon Sep 17 00:00:00 2001 From: chai Date: Mon, 25 Jan 2021 14:28:30 +0800 Subject: +scripts --- .../Assets/Scripts/XMainClient/KKSG/CardMatchOp.cs | 30 ++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 Client/Assets/Scripts/XMainClient/KKSG/CardMatchOp.cs (limited to 'Client/Assets/Scripts/XMainClient/KKSG/CardMatchOp.cs') 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 + } +} -- cgit v1.1-26-g67d0