mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-03-02 16:24:37 +03:00
19 lines
470 B
Protocol Buffer
19 lines
470 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "ExhibitionDisplayInfo.proto";
|
|
import "GalleryStopReason.proto";
|
|
import "IslandPartyGallerySettleInfo.proto";
|
|
|
|
// CmdId: 21749
|
|
// Name: BEHCDONNJNP
|
|
message IslandPartySettleNotify {
|
|
GalleryStopReason reason = 4;
|
|
uint32 time_remain = 15;
|
|
repeated ExhibitionDisplayInfo score_list = 3;
|
|
repeated IslandPartyGallerySettleInfo settle_info_list = 2;
|
|
bool is_new_record = 1;
|
|
}
|
|
|