GC-Proto/proto/FireWorkData.proto

12 lines
262 B
Protocol Buffer
Raw Permalink Normal View History

2022-11-12 08:09:32 +03:00
// Proto has been converted from Sorapointa to Grasscutter format
syntax = "proto3";
2023-01-28 18:50:00 +03:00
option java_package = "emu.grasscutter.net.proto";
2023-01-28 18:50:00 +03:00
2022-11-12 08:09:32 +03:00
import "FireWorkInstance.proto";
2023-01-28 18:50:00 +03:00
2022-11-12 08:09:32 +03:00
message FireWorkData {
uint32 id = 1;
repeated FireWorkInstance fireWorkInstance = 2;
}