11 lines
213 B
Protocol Buffer
11 lines
213 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
option java_package = "emu.grasscutter.net.proto";
|
||
|
|
||
|
import "PropValue.proto";
|
||
|
|
||
|
// 4.6.0
|
||
|
// CmdId: 9051
|
||
|
message EntityPropNotify {
|
||
|
map<uint32, PropValue> prop_map = 10;
|
||
|
uint32 entity_id = 14;
|
||
|
}
|