15 lines
287 B
Protocol Buffer
15 lines
287 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "CutSceneExtraParam.proto";
|
|
|
|
// CmdId: 261
|
|
// Name: CBPCIBPLELE
|
|
message CutSceneBeginNotify {
|
|
uint32 cutscene_id = 6;
|
|
bool is_wait_others = 7;
|
|
repeated CutSceneExtraParam extra_param_list = 3;
|
|
}
|
|
|