头像框修改添加
parent
e9fc318776
commit
7ebb8db885
|
|
@ -32,6 +32,7 @@ option optimize_for = SPEED;
|
|||
optional int32 isFirstRecharge = 15; // 是否首冲
|
||||
optional int32 isMatchRoom = 16; //是否在请求匹配
|
||||
optional int32 curRoomType = 17 ;//当前房间类型(0不在房间里 1血战)
|
||||
optional int32 headFrame = 18;//当前头像框
|
||||
}
|
||||
|
||||
message Privilege{
|
||||
|
|
|
|||
|
|
@ -254,6 +254,10 @@ enum MessageType{
|
|||
// 爬塔副本使用Buff(试炼副本)
|
||||
MAP_TOWER_USEBUFF_REQUEST = 11231;
|
||||
MAP_TOWER_USEBUFF_RESPONSE = 11232;
|
||||
|
||||
//修改头像框
|
||||
MODIFY_HEAD_FRAME_REQUEST = 11233;
|
||||
MODIFY_HEAD_FRAME_RESPONSE = 11234;
|
||||
|
||||
// N 11300
|
||||
// O 11400
|
||||
|
|
|
|||
|
|
@ -359,7 +359,10 @@ import "CommonProto.proto";
|
|||
repeated Item item =2;
|
||||
}
|
||||
|
||||
|
||||
message modifyHeadFrameRequest{
|
||||
//修改头像框
|
||||
optional int32 headFrameId = 1;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue