mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2024-12-25 07:59:24 +03:00
18 lines
321 B
Protocol Buffer
18 lines
321 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
|
|
|
|
import "ProfilePicture.proto";
|
|
|
|
message BlessingFriendPicData {
|
|
uint32 avatarId = 2;
|
|
ProfilePicture profilePicture = 4;
|
|
string nickname = 5;
|
|
string signature = 6;
|
|
map<uint32, uint32> picNumMap = 12;
|
|
string remarkName = 3;
|
|
uint32 uid = 9;
|
|
}
|