mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2024-12-25 16:09:25 +03:00
19 lines
354 B
Protocol Buffer
19 lines
354 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
option java_package = "emu.grasscutter.net.proto";
|
||
|
|
||
|
|
||
|
|
||
|
import "ProfilePicture.proto";
|
||
|
|
||
|
message GCGPlayerBriefData {
|
||
|
string psnId = 7;
|
||
|
map<uint32, uint32> cardFaceMap = 4;
|
||
|
ProfilePicture profilePicture = 14;
|
||
|
uint32 uid = 3;
|
||
|
string nickName = 2;
|
||
|
string onlineId = 10;
|
||
|
uint32 controllerId = 11;
|
||
|
repeated uint32 cardIdList = 13;
|
||
|
}
|