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-02-28 06:08:38 +03:00
|
|
|
// Name: OPILHNEICML
|
|
|
|
// CmdId: 295
|
2023-02-04 20:33:31 +03:00
|
|
|
message CutSceneBeginNotify {
|
2023-02-28 06:08:38 +03:00
|
|
|
bool is_wait_others = 12;
|
|
|
|
uint32 cutscene_id = 10;
|
|
|
|
repeated CutSceneExtraParam extra_param_list = 7;
|
2023-02-04 20:33:31 +03:00
|
|
|
}
|
2023-02-28 06:08:38 +03:00
|
|
|
|