2023-02-18 04:48:44 +03:00
|
|
|
syntax = "proto3";
|
|
|
|
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
|
|
|
|
import "ExhibitionDisplayInfo.proto";
|
2023-02-28 04:12:44 +03:00
|
|
|
import "HideAndSeekSettleInfo.proto";
|
2023-02-18 04:48:44 +03:00
|
|
|
|
2023-04-11 06:14:48 +03:00
|
|
|
// CmdId: 5326
|
|
|
|
// Name: CKGALBJACEN
|
2023-02-18 04:48:44 +03:00
|
|
|
message HideAndSeekSettleNotify {
|
2023-04-11 06:14:48 +03:00
|
|
|
// Name: BNPALGNFKAB
|
2023-02-28 04:12:44 +03:00
|
|
|
enum SettleReason {
|
|
|
|
SETTLE_REASON_TIME_OUT = 0;
|
|
|
|
SETTLE_PLAY_END = 1;
|
|
|
|
SETTLE_PLAYER_QUIT = 2;
|
|
|
|
}
|
2023-02-18 04:48:44 +03:00
|
|
|
|
2023-04-11 06:14:48 +03:00
|
|
|
repeated HideAndSeekSettleInfo settle_info_list = 5;
|
|
|
|
uint32 cost_time = 13;
|
|
|
|
uint32 stage_type = 7;
|
|
|
|
repeated ExhibitionDisplayInfo score_list = 6;
|
|
|
|
uint32 play_index = 9;
|
|
|
|
repeated uint32 winner_list = 1;
|
|
|
|
SettleReason reason = 10;
|
|
|
|
bool is_record_score = 11;
|
2023-02-18 04:48:44 +03:00
|
|
|
}
|
2023-02-28 04:12:44 +03:00
|
|
|
|