mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-03-02 16:24:37 +03:00
18 lines
386 B
Protocol Buffer
18 lines
386 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "ExhibitionDisplayInfo.proto";
|
|
import "ProfilePicture.proto";
|
|
|
|
// Name: HKLPDBAPNMI
|
|
message LanV3BoatSettleInfo {
|
|
string nickname = 11;
|
|
ProfilePicture profile_picture = 2;
|
|
repeated ExhibitionDisplayInfo card_list = 15;
|
|
uint32 head_image = 4;
|
|
string online_id = 8;
|
|
uint32 uid = 6;
|
|
}
|
|
|