mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-04-04 16:16:06 +03:00
16 lines
364 B
Protocol Buffer
16 lines
364 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "PlayerLocationInfo.proto";
|
|
import "VehicleLocationInfo.proto";
|
|
|
|
// CmdId: 207
|
|
// EnetChannelId: 1
|
|
// EnetIsReliable: true
|
|
message ScenePlayerLocationNotify {
|
|
uint32 scene_id = 1;
|
|
repeated PlayerLocationInfo player_loc_list = 8;
|
|
repeated VehicleLocationInfo vehicle_loc_list = 5;
|
|
}
|