Commit 707b028e authored by chechunchi's avatar chechunchi

fix

parent 27cf9ec9
Pipeline #19246 passed with stage
in 12 seconds
......@@ -451,8 +451,13 @@ message StocGameMessage {
// 选项选择
message MsgSelectOption {
int32 player = 1; // 玩家编号
repeated int32 options = 2; // 可选项,一般是某张卡的效果
message Option {
int32 code = 1; // 一般是某张卡的效果
int32 response = 2; // 玩家选择后需要回传给服务端的值
}
int32 player = 1; // 玩家编号
repeated Option options = 2; // 可选项集合
}
oneof gameMsg {
......
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