GC-Proto/proto/CutSceneBeginNotify.proto

12 lines
255 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
2024-06-23 20:46:20 +03:00
// 4.7.0
2023-02-04 20:33:31 +03:00
message CutSceneBeginNotify {
2024-06-23 20:46:20 +03:00
uint32 cutscene_id = 11;
bool is_wait_others = 8;
repeated CutSceneExtraParam extra_param_list = 15;
2024-06-08 09:18:08 +03:00
}