mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-03-02 16:24:37 +03:00
28 lines
662 B
Protocol Buffer
28 lines
662 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "ExhibitionDisplayInfo.proto";
|
|
import "HideAndSeekSettleInfo.proto";
|
|
|
|
// CmdId: 5326
|
|
// Name: CKGALBJACEN
|
|
message HideAndSeekSettleNotify {
|
|
// Name: BNPALGNFKAB
|
|
enum SettleReason {
|
|
SETTLE_REASON_TIME_OUT = 0;
|
|
SETTLE_PLAY_END = 1;
|
|
SETTLE_PLAYER_QUIT = 2;
|
|
}
|
|
|
|
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;
|
|
}
|
|
|