mirror of
https://github.com/Melledy/Grasscutter.git
synced 2024-11-23 20:34:49 +00:00
12 lines
215 B
Protocol Buffer
12 lines
215 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
option java_package = "emu.grasscutter.net.proto";
|
||
|
|
||
|
|
||
|
message MassivePropParam {
|
||
|
int32 type = 1;
|
||
|
repeated uint32 reaction_info_list = 2;
|
||
|
repeated float param_list = 3;
|
||
|
uint32 sync_flag = 4;
|
||
|
}
|