17 lines
322 B
Protocol Buffer
17 lines
322 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "OnlinePlayerInfo.proto";
|
|
|
|
// Name: DNPOCMJCINI
|
|
message ScenePlayerInfo {
|
|
string name = 14;
|
|
OnlinePlayerInfo online_player_info = 15;
|
|
bool is_connected = 7;
|
|
uint32 uid = 4;
|
|
uint32 scene_id = 12;
|
|
uint32 peer_id = 13;
|
|
}
|
|
|