mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-04-07 09:36:09 +03:00
18 lines
368 B
Protocol Buffer
18 lines
368 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "ProfilePicture.proto";
|
|
|
|
// Name: IBLCFHKMEPL
|
|
message BlessingFriendPicData {
|
|
string nickname = 12;
|
|
uint32 uid = 2;
|
|
ProfilePicture profile_picture = 14;
|
|
map<uint32, uint32> pic_num_map = 6;
|
|
string signature = 1;
|
|
uint32 avatar_id = 4;
|
|
string remark_name = 9;
|
|
}
|
|
|