mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2024-12-25 16:09:25 +03:00
21 lines
449 B
Protocol Buffer
21 lines
449 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "MassiveBoxInfo.proto";
|
|
import "MassiveGrassInfo.proto";
|
|
import "MassiveWaterInfo.proto";
|
|
|
|
// Name: INDNLCFGCHO
|
|
message ClientMassiveEntity {
|
|
uint32 entity_type = 1;
|
|
uint32 config_id = 2;
|
|
int64 obj_id = 3;
|
|
oneof entity_info {
|
|
MassiveWaterInfo water_info = 4;
|
|
MassiveGrassInfo grass_info = 5;
|
|
MassiveBoxInfo box_info = 6;
|
|
}
|
|
}
|
|
|