GC-Proto/proto/CutSceneBeginNotify.proto

15 lines
287 B
Protocol Buffer
Raw Normal View History

2023-02-04 20:33:31 +03:00
syntax = "proto3";
2023-02-18 04:48:44 +03:00
2023-02-04 20:33:31 +03:00
option java_package = "emu.grasscutter.net.proto";
import "CutSceneExtraParam.proto";
2023-04-11 11:18:47 +03:00
// CmdId: 261
// Name: CBPCIBPLELE
2023-02-04 20:33:31 +03:00
message CutSceneBeginNotify {
2023-04-11 11:18:47 +03:00
uint32 cutscene_id = 6;
bool is_wait_others = 7;
repeated CutSceneExtraParam extra_param_list = 3;
2023-02-04 20:33:31 +03:00
}
2023-02-28 06:08:38 +03:00