mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-03-02 16:24:37 +03:00
20 lines
450 B
Protocol Buffer
20 lines
450 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "ExhibitionDisplayInfo.proto";
|
|
import "ProfilePicture.proto";
|
|
|
|
// Name: GPMAKNFCCKM
|
|
message ScenePlayBattleSettlePlayerInfo {
|
|
repeated ExhibitionDisplayInfo card_list = 14;
|
|
int64 param = 4;
|
|
uint32 uid = 1;
|
|
uint32 head_image = 9;
|
|
ProfilePicture profile_picture = 15;
|
|
uint32 statistic_id = 10;
|
|
string online_id = 13;
|
|
string nickname = 8;
|
|
}
|
|
|