GC-Proto/proto/CutSceneBeginNotify.proto

13 lines
267 B
Protocol Buffer
Raw Normal View History

2023-02-04 20:33:31 +03:00
syntax = "proto3";
2024-06-08 09:18:08 +03:00
2023-02-04 20:33:31 +03:00
option java_package = "emu.grasscutter.net.proto";
2024-06-08 09:18:08 +03:00
import "CutSceneExtraParam.proto";
2024-06-08 09:18:08 +03:00
// 4.6.0
// CmdId: 28649
2023-02-04 20:33:31 +03:00
message CutSceneBeginNotify {
2024-06-08 09:18:08 +03:00
repeated CutSceneExtraParam extra_param_list = 2;
bool is_wait_others = 6;
uint32 cutscene_id = 12;
}