GC-Proto/proto/IslandPartySettleNotify.proto
2023-04-11 11:14:48 +08:00

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;
}