GC-Proto/proto/ScenePlayBattleSettlePlayerInfo.proto

20 lines
450 B
Protocol Buffer
Raw Normal View History

2023-02-18 04:48:44 +03:00
syntax = "proto3";
option java_package = "emu.grasscutter.net.proto";
import "ExhibitionDisplayInfo.proto";
2023-02-28 04:12:44 +03:00
import "ProfilePicture.proto";
2023-02-18 04:48:44 +03:00
2023-04-11 06:14:48 +03:00
// Name: GPMAKNFCCKM
2023-02-18 04:48:44 +03:00
message ScenePlayBattleSettlePlayerInfo {
2023-04-11 06:14:48 +03:00
repeated ExhibitionDisplayInfo card_list = 14;
int64 param = 4;
2023-02-28 04:12:44 +03:00
uint32 uid = 1;
2023-04-11 06:14:48 +03:00
uint32 head_image = 9;
ProfilePicture profile_picture = 15;
uint32 statistic_id = 10;
string online_id = 13;
string nickname = 8;
2023-02-18 04:48:44 +03:00
}
2023-02-28 04:12:44 +03:00