mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-03-02 16:24:37 +03:00
19 lines
407 B
Protocol Buffer
19 lines
407 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "ProfilePicture.proto";
|
|
|
|
// Name: IOGDNKFIGHK
|
|
message GCGPlayerBriefData {
|
|
string nick_name = 7;
|
|
string psn_id = 14;
|
|
repeated uint32 card_id_list = 6;
|
|
uint32 uid = 12;
|
|
map<uint32, uint32> card_face_map = 3;
|
|
ProfilePicture profile_picture = 2;
|
|
string online_id = 11;
|
|
uint32 controller_id = 15;
|
|
}
|
|
|