GC-Proto/proto/ScenePlayerInfo.proto
2024-08-28 17:09:22 +08:00

15 lines
321 B
Protocol Buffer

syntax = "proto3";
option java_package = "emu.grasscutter.net.proto";
// Version: 5.0
import "OnlinePlayerInfo.proto";
message ScenePlayerInfo {
OnlinePlayerInfo online_player_info = 1;
bool is_connected = 2;
uint32 scene_id = 5;
string name = 8;
uint32 peer_id = 11;
uint32 uid = 13;
}