16 lines
361 B
Protocol Buffer
16 lines
361 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
import "MassiveWaterInfo.proto";
|
|
import "MassiveGrassInfo.proto";
|
|
import "MassiveBoxInfo.proto";
|
|
// Obf: LPCNMINODMN
|
|
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;
|
|
}
|
|
}
|