16 lines
352 B
Protocol Buffer
16 lines
352 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "PlayerLocationInfo.proto";
|
|
import "VehicleLocationInfo.proto";
|
|
|
|
// CmdId: 212
|
|
// Name: HCKDLDDBGEN
|
|
message ScenePlayerLocationNotify {
|
|
uint32 scene_id = 14;
|
|
repeated PlayerLocationInfo player_loc_list = 3;
|
|
repeated VehicleLocationInfo vehicle_loc_list = 7;
|
|
}
|
|
|