mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-01-13 01:09:26 +03:00
22 lines
480 B
Protocol Buffer
22 lines
480 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "ADMIOIMGPLK.proto";
|
|
import "GalleryFlowerStartParam.proto";
|
|
|
|
// Name: ODHIAGMBHOJ
|
|
// CmdId: 5567
|
|
message GalleryStartNotify {
|
|
uint32 end_time = 8;
|
|
uint32 start_time = 3;
|
|
uint32 player_count = 9;
|
|
uint32 gallery_id = 11;
|
|
uint32 owner_uid = 15;
|
|
oneof detail {
|
|
GalleryFlowerStartParam flower_start_param = 5;
|
|
ADMIOIMGPLK electrohercules_start_param = 13;
|
|
}
|
|
}
|
|
|