mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-03-02 16:24:37 +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: ALOJMEBGGPM
|
|
message BlessingFriendPicData {
|
|
string remark_name = 12;
|
|
map<uint32, uint32> pic_num_map = 3;
|
|
string signature = 15;
|
|
ProfilePicture profile_picture = 5;
|
|
uint32 avatar_id = 8;
|
|
string nickname = 7;
|
|
uint32 uid = 1;
|
|
}
|
|
|