Commit 759a1db5 authored by Chunchi Che's avatar Chunchi Che

Merge branch 'feat/game/mora' into 'main'

add MsgRockPaperScissors and MsgHandResult

See merge request !58
parents 975e4a81 30ca1973
Pipeline #22388 passed with stage
in 13 seconds
......@@ -802,6 +802,17 @@ message StocGameMessage {
int32 player = 1; // 玩家编号
}
// 提示玩家选择石头剪刀布
message MsgRockPaperScissors {
int32 player = 1; // 玩家编号
}
// 玩家选择石头剪刀布的结果
message MsgHandResult {
int32 result1 = 1;
int32 result2 = 2;
}
// 断线重连
message MsgReloadField {
message ZoneAction {
......@@ -880,5 +891,7 @@ message StocGameMessage {
MsgShuffleSetCard shuffle_set_card = 48;
MsgFieldDisabled field_disabled = 49;
MsgShuffleDeck shuffle_deck = 50;
MsgRockPaperScissors rock_paper_scissors = 51;
MsgHandResult hand_res = 52;
}
}
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