Commit d7caeb78 authored by Chunchi Che's avatar Chunchi Che

add SelectCardResponse

parent edc9a649
Pipeline #19117 passed with stage
in 14 seconds
...@@ -139,10 +139,15 @@ message CtosGameMsgResponse { ...@@ -139,10 +139,15 @@ message CtosGameMsgResponse {
CardZone zone = 2; CardZone zone = 2;
int32 sequence = 3; int32 sequence = 3;
} }
message SelectCardResponse {
int32 count = 1;
repeated int32 select_ptr = 2;
}
oneof gameMsgResponse { oneof gameMsgResponse {
SelectIdleCmdResponse select_idle_cmd = 1; SelectIdleCmdResponse select_idle_cmd = 1;
SelectPlaceResponse select_place = 2; SelectPlaceResponse select_place = 2;
SelectCardResponse select_card = 3;
} }
} }
...@@ -380,6 +385,7 @@ message StocGameMessage { ...@@ -380,6 +385,7 @@ message StocGameMessage {
message SelectAbleCard { message SelectAbleCard {
int32 code = 1; int32 code = 1;
CardLocation location = 2; CardLocation location = 2;
int32 response = 3; // 玩家选择后需要传给服务端的值
} }
int32 player = 1; // 玩家编号 int32 player = 1; // 玩家编号
......
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