GC-Proto/proto/FireworksLaunchSchemeData.proto

14 lines
298 B
Protocol Buffer
Raw Normal View History

2023-02-18 04:48:44 +03:00
syntax = "proto3";
option java_package = "emu.grasscutter.net.proto";
import "FireworksLaunchParam.proto";
2023-02-28 04:12:44 +03:00
// Name: KOGHPNIOEKJ
2023-02-18 04:48:44 +03:00
message FireworksLaunchSchemeData {
2023-02-28 04:12:44 +03:00
repeated uint32 fireworks_id_list = 4;
repeated FireworksLaunchParam launch_param_list = 14;
uint32 scheme_id = 12;
2023-02-18 04:48:44 +03:00
}
2023-02-28 04:12:44 +03:00