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-02-28 04:12:44 +03:00
// Name: DLCNMLLCHCI
// CmdId: 20411
2023-02-18 04:48:44 +03:00
message IslandPartySettleNotify {
2023-02-28 04:12:44 +03:00
uint32 time_remain = 2;
repeated IslandPartyGallerySettleInfo settle_info_list = 3;
repeated ExhibitionDisplayInfo score_list = 6;
GalleryStopReason reason = 11;
bool is_new_record = 7;
2023-02-18 04:48:44 +03:00
}
2023-02-28 04:12:44 +03:00