GC-Proto/proto/GalleryStartNotify.proto

22 lines
480 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 "ADMIOIMGPLK.proto";
import "GalleryFlowerStartParam.proto";
2023-02-18 04:48:44 +03:00
2023-02-28 04:12:44 +03:00
// Name: ODHIAGMBHOJ
// CmdId: 5567
2023-02-18 04:48:44 +03:00
message GalleryStartNotify {
2023-02-28 04:12:44 +03:00
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;
}
2023-02-18 04:48:44 +03:00
}
2023-02-28 04:12:44 +03:00