mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-01-30 17:49:40 +03:00
15 lines
280 B
Protocol Buffer
15 lines
280 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "ShowAvatarInfo.proto";
|
|
|
|
// CmdId: 4026
|
|
// Name: MAIBFBAOOEK
|
|
message GetFriendShowAvatarInfoRsp {
|
|
repeated ShowAvatarInfo show_avatar_info_list = 10;
|
|
uint32 uid = 3;
|
|
int32 retcode = 15;
|
|
}
|
|
|