GC-Proto/proto/IslandPartySettleNotify.proto

19 lines
470 B
Protocol Buffer
Raw Normal View History

2023-02-18 04:48:44 +03:00
syntax = "proto3";
option java_package = "emu.grasscutter.net.proto";
2023-02-28 04:12:44 +03:00
import "ExhibitionDisplayInfo.proto";
2023-02-18 04:48:44 +03:00
import "GalleryStopReason.proto";
import "IslandPartyGallerySettleInfo.proto";
2023-04-11 06:14:48 +03:00
// CmdId: 21749
// Name: BEHCDONNJNP
2023-02-18 04:48:44 +03:00
message IslandPartySettleNotify {
2023-04-11 06:14:48 +03:00
GalleryStopReason reason = 4;
uint32 time_remain = 15;
repeated ExhibitionDisplayInfo score_list = 3;
repeated IslandPartyGallerySettleInfo settle_info_list = 2;
bool is_new_record = 1;
2023-02-18 04:48:44 +03:00
}
2023-02-28 04:12:44 +03:00