Commit 48656efd authored by Chunchi Che's avatar Chunchi Che

add MsgNewTurn

parent cdceb995
Pipeline #18294 passed with stage
in 12 seconds
......@@ -200,9 +200,15 @@ message StocGameMessage {
repeated int32 cards = 3; // 抽卡结果
}
// 回合转换
message MsgNewTurn {
int32 player = 1; // 下一个操作的玩家编号
}
oneof gameMsg {
MsgStart start = 1;
MsgDraw draw = 2;
MsgNewTurn new_turn = 3;
}
}
......
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