mirror of
https://github.com/Grasscutters/Grasscutter.git
synced 2025-01-28 03:13:12 +08:00
fcabf42d9a
* Firework Implement * add legacy function * remove obfusucated names * remove obfusucated names * remove obfusucated names * remove obfusucated names Co-authored-by: Melledy <52122272+Melledy@users.noreply.github.com>
12 lines
237 B
Protocol Buffer
12 lines
237 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "FireWorkInstance.proto";
|
|
|
|
message FireworkSetData {
|
|
uint32 id = 1;
|
|
repeated uint32 _unknown_field_ = 2;
|
|
repeated FireWorkInstance fireWorkInstance = 3;
|
|
}
|