mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-03-19 16:44:36 +03:00
13 lines
262 B
Protocol Buffer
13 lines
262 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
|
|
|
|
import "FireworksLaunchParam.proto";
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
message FireworksLaunchSchemeData {
|
|
uint32 schemeId = 2;
|
|
repeated FireworksLaunchParam launchParamList = 13;
|
|
repeated uint32 fireworksIdList = 1;
|
|
}
|