Commit 0582637c authored by Chunchi Che's avatar Chunchi Che

add MsgUpdateCounter

parent 12d819b3
Pipeline #20926 passed with stage
in 18 seconds
......@@ -635,6 +635,19 @@ message StocGameMessage {
repeated Action actions = 3;
}
// 更新指示器
message MsgUpdateCounter {
enum ActionType {
UNKNOWN = 0;
ADD = 1; // 添加
REMOVE = 2; // 删除
}
int32 counter_type = 1; // 指示器类型
CardLocation location = 2; // 目标卡位置
ActionType action_type = 3;
int32 count = 4; // 改变的数量
}
// 断线重连
message MsgReloadField {
message ZoneAction {
......@@ -689,5 +702,6 @@ message StocGameMessage {
MsgReloadField reload_field = 24;
MsgSelectSum select_sum = 25;
MsgSelectTribute select_tribute = 26;
MsgUpdateCounter update_counter = 27;
}
}
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