mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-01-13 01:09:26 +03:00
20 lines
448 B
Protocol Buffer
20 lines
448 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "ExhibitionDisplayInfo.proto";
|
|
import "ProfilePicture.proto";
|
|
|
|
// Name: EDLDMPIMDAB
|
|
message ScenePlayBattleSettlePlayerInfo {
|
|
string online_id = 9;
|
|
string nickname = 5;
|
|
ProfilePicture profile_picture = 2;
|
|
repeated ExhibitionDisplayInfo card_list = 10;
|
|
uint32 uid = 1;
|
|
int64 param = 13;
|
|
uint32 statistic_id = 4;
|
|
uint32 head_image = 6;
|
|
}
|
|
|