16 lines
353 B
Protocol Buffer
16 lines
353 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "PlayerLocationInfo.proto";
|
|
import "VehicleLocationInfo.proto";
|
|
|
|
// Name: EGCBDDHMNGD
|
|
// CmdId: 291
|
|
message ScenePlayerLocationNotify {
|
|
repeated VehicleLocationInfo vehicle_loc_list = 7;
|
|
repeated PlayerLocationInfo player_loc_list = 15;
|
|
uint32 scene_id = 12;
|
|
}
|
|
|