Player show avatar list

This commit is contained in:
Yazawazi
2022-04-28 03:21:51 +08:00
committed by GitHub
parent d539fb4c44
commit 3c3c884fc1
5 changed files with 112 additions and 1 deletions

View File

@@ -0,0 +1,17 @@
syntax = "proto3";
option java_package = "emu.grasscutter.net.proto";
message UpdatePlayerShowAvatarListReq {
enum CmdId {
option allow_alias = true;
ENET_CHANNEL_ID = 0;
NONE = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
CMD_ID = 4093;
}
repeated uint32 show_avatar_id_list = 1;
bool is_show_avatar = 2;
}

View File

@@ -0,0 +1,17 @@
syntax = "proto3";
option java_package = "emu.grasscutter.net.proto";
message UpdatePlayerShowAvatarListRsp {
enum CmdId {
option allow_alias = true;
NONE = 0;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
CMD_ID = 4053;
}
int32 retcode = 1;
repeated uint32 show_avatar_id_list = 2;
bool is_show_avatar = 3;
}