15 lines
339 B
Protocol Buffer
15 lines
339 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "PlayerLocationInfo.proto";
|
|
import "PlayerWorldLocationInfo.proto";
|
|
|
|
// Name: MMEJGJDKLEK
|
|
// CmdId: 211
|
|
message WorldPlayerLocationNotify {
|
|
repeated PlayerLocationInfo player_loc_list = 8;
|
|
repeated PlayerWorldLocationInfo player_world_loc_list = 1;
|
|
}
|
|
|