15 lines
356 B
Protocol Buffer
15 lines
356 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "PlayerLocationInfo.proto";
|
|
import "PlayerWorldLocationInfo.proto";
|
|
|
|
// CmdId: 283
|
|
// EnetChannelId: 0
|
|
// EnetIsReliable: true
|
|
message WorldPlayerLocationNotify {
|
|
repeated PlayerLocationInfo player_loc_list = 6;
|
|
repeated PlayerWorldLocationInfo player_world_loc_list = 15;
|
|
}
|