GC-Proto/proto/ScenePlayerInfo.proto

13 lines
283 B
Protocol Buffer
Raw Normal View History

2022-11-06 15:30:21 +03:00
syntax = "proto3";
2023-01-28 18:50:00 +03:00
option java_package = "emu.grasscutter.net.proto";
import "OnlinePlayerInfo.proto";
2024-04-22 15:15:37 +03:00
2022-11-06 15:30:21 +03:00
message ScenePlayerInfo {
2024-04-22 15:15:37 +03:00
string name = 9;
OnlinePlayerInfo online_player_info = 5;
uint32 scene_id = 15;
uint32 uid = 2;
uint32 peer_id = 8;
bool is_connected = 6;
2022-11-06 15:30:21 +03:00
}