2023-02-18 04:48:44 +03:00
|
|
|
syntax = "proto3";
|
|
|
|
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
|
2023-04-11 06:14:48 +03:00
|
|
|
import "EODBPMNMPEJ.proto";
|
2023-02-28 04:12:44 +03:00
|
|
|
import "GalleryFlowerStartParam.proto";
|
2023-02-18 04:48:44 +03:00
|
|
|
|
2023-04-11 06:14:48 +03:00
|
|
|
// CmdId: 5590
|
|
|
|
// Name: LALCHNFNKNF
|
2023-02-18 04:48:44 +03:00
|
|
|
message GalleryStartNotify {
|
2023-04-11 06:14:48 +03:00
|
|
|
uint32 end_time = 11;
|
|
|
|
uint32 gallery_id = 10;
|
|
|
|
uint32 start_time = 9;
|
|
|
|
uint32 owner_uid = 5;
|
|
|
|
uint32 player_count = 7;
|
2023-02-28 04:12:44 +03:00
|
|
|
oneof detail {
|
2023-04-11 06:14:48 +03:00
|
|
|
GalleryFlowerStartParam flower_start_param = 2;
|
|
|
|
EODBPMNMPEJ electrohercules_start_param = 8;
|
2023-02-28 04:12:44 +03:00
|
|
|
}
|
2023-02-18 04:48:44 +03:00
|
|
|
}
|
2023-02-28 04:12:44 +03:00
|
|
|
|