28 lines
594 B
Protocol Buffer
28 lines
594 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
|
||
|
|
||
|
import "SettleReason.proto";
|
||
|
import "HideAndSeekSettleInfo.proto";
|
||
|
import "ExhibitionDisplayInfo.proto";
|
||
|
option java_package = "emu.grasscutter.net.proto";
|
||
|
|
||
|
message HideAndSeekSettleNotify {
|
||
|
enum PBBMCANAFIN {
|
||
|
option allow_alias = true;
|
||
|
NONE = 0;
|
||
|
PEPPOHPHJOJ = 5327;
|
||
|
DCDNILFDFLB = 0;
|
||
|
NNBKOLMPOEA = 1;
|
||
|
}
|
||
|
|
||
|
repeated uint32 winnerList = 9;
|
||
|
uint32 costTime = 10;
|
||
|
uint32 stageType = 11;
|
||
|
SettleReason reason = 1;
|
||
|
repeated HideAndSeekSettleInfo settleInfoList = 4;
|
||
|
uint32 playIndex = 13;
|
||
|
repeated ExhibitionDisplayInfo scoreList = 7;
|
||
|
bool isRecordScore = 5;
|
||
|
}
|