mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2024-12-24 15:39:25 +03:00
14 lines
258 B
Protocol Buffer
14 lines
258 B
Protocol Buffer
syntax = "proto3";
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
// 4.7.0
|
|
// CmdId: 4777
|
|
// Obf: ???
|
|
message GetOnlinePlayerInfoReq {
|
|
bool is_online_id = 9;
|
|
oneof player_id {
|
|
uint32 target_uid = 10;
|
|
string online_id = 8;
|
|
string psn_id = 3;
|
|
}
|
|
}
|