14 lines
328 B
Protocol Buffer
14 lines
328 B
Protocol Buffer
syntax = "proto3";
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
import "ProfilePicture.proto";
|
|
// 4.7.0
|
|
// Obf: PCAPDLBGOMG?PBFPMADNALI
|
|
message HomeGroupPlayerInfo {
|
|
string nickname = 14;
|
|
uint32 player_level = 5;
|
|
ProfilePicture profile_picture = 1;
|
|
uint32 uid = 15; // ok
|
|
string psn_id = 11;
|
|
string online_id = 7;
|
|
}
|