mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-03-02 16:24:37 +03:00
20 lines
395 B
Protocol Buffer
20 lines
395 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "ProfilePicture.proto";
|
|
|
|
// Name: CBCOHJNHCND
|
|
message BlessingRecvPicRecord {
|
|
string remark_name = 6;
|
|
string signature = 14;
|
|
string nickname = 13;
|
|
uint32 uid = 11;
|
|
uint32 pic_id = 4;
|
|
uint32 avatar_id = 8;
|
|
uint32 index = 3;
|
|
ProfilePicture profile_picture = 5;
|
|
bool is_recv = 7;
|
|
}
|
|
|