GC-Proto/proto/ServerMassiveEntity.proto

23 lines
510 B
Protocol Buffer
Raw Normal View History

2023-02-18 04:48:44 +03:00
syntax = "proto3";
option java_package = "emu.grasscutter.net.proto";
2023-02-28 04:12:44 +03:00
import "MassiveBoxInfo.proto";
import "MassiveGrassInfo.proto";
import "MassiveWaterInfo.proto";
2023-02-18 04:48:44 +03:00
2023-04-11 06:14:48 +03:00
// Name: KOKAKAIJKDI
2023-02-18 04:48:44 +03:00
message ServerMassiveEntity {
2023-02-28 04:12:44 +03:00
uint32 entity_type = 1;
uint32 config_id = 2;
uint32 runtime_id = 3;
uint32 authority_peer_id = 4;
int64 obj_id = 5;
oneof entity_info {
MassiveWaterInfo water_info = 6;
MassiveGrassInfo grass_info = 7;
MassiveBoxInfo box_info = 8;
}
2023-02-18 04:48:44 +03:00
}
2023-02-28 04:12:44 +03:00