mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2024-12-26 16:39:26 +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";
|
|
|
|
// Name: DLCNMLLCHCI
|
|
// CmdId: 20411
|
|
message IslandPartySettleNotify {
|
|
uint32 time_remain = 2;
|
|
repeated IslandPartyGallerySettleInfo settle_info_list = 3;
|
|
repeated ExhibitionDisplayInfo score_list = 6;
|
|
GalleryStopReason reason = 11;
|
|
bool is_new_record = 7;
|
|
}
|
|
|