mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2024-12-25 16:09:25 +03:00
14 lines
298 B
Protocol Buffer
14 lines
298 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "FireworksLaunchParam.proto";
|
|
|
|
// Name: KOGHPNIOEKJ
|
|
message FireworksLaunchSchemeData {
|
|
repeated uint32 fireworks_id_list = 4;
|
|
repeated FireworksLaunchParam launch_param_list = 14;
|
|
uint32 scheme_id = 12;
|
|
}
|
|
|