Commit 1d90a7c3 authored by Chunchi Che's avatar Chunchi Che

add Msgunimplemented

parent 3973685c
Pipeline #20784 failed with stage
in 15 seconds
......@@ -413,7 +413,7 @@ message StocGameMessage {
message SelectAbleCard {
int32 code = 1;
CardLocation location = 2;
int32 response = 3; // 玩家选择后需要传给服务端的值
int32 response = 3; // 玩家选择后需要传给服务端的值
int32 release_param = 4; // 意义不明的字段
}
......@@ -564,6 +564,11 @@ message StocGameMessage {
// 等待对手操作
message MsgWait {}
// 未处理的Message
message MsgUnimplemented {
int32 command = 1; // 未处理的Message编号
}
oneof gameMsg {
MsgStart start = 1;
MsgDraw draw = 2;
......@@ -586,5 +591,6 @@ message StocGameMessage {
MsgUpdateHp update_hp = 19;
MsgWin win = 20;
MsgWait wait = 21;
MsgUnimplemented unimplemented = 22;
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment