From 7ebb8db885ef3e97fa1662c2c5369634d861d6f6 Mon Sep 17 00:00:00 2001 From: lvxinran Date: Thu, 18 Jul 2019 16:02:57 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A4=B4=E5=83=8F=E6=A1=86=E4=BF=AE=E6=94=B9?= =?UTF-8?q?=E6=B7=BB=E5=8A=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- protos/CommonProto.proto | 1 + protos/MessageTypeProto.proto | 4 ++++ protos/PlayerInfoProto.proto | 5 ++++- 3 files changed, 9 insertions(+), 1 deletion(-) diff --git a/protos/CommonProto.proto b/protos/CommonProto.proto index 173c64e..7398177 100644 --- a/protos/CommonProto.proto +++ b/protos/CommonProto.proto @@ -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{ diff --git a/protos/MessageTypeProto.proto b/protos/MessageTypeProto.proto index d6e362d..dbed4cd 100644 --- a/protos/MessageTypeProto.proto +++ b/protos/MessageTypeProto.proto @@ -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 diff --git a/protos/PlayerInfoProto.proto b/protos/PlayerInfoProto.proto index c84a8ee..2c09b81 100644 --- a/protos/PlayerInfoProto.proto +++ b/protos/PlayerInfoProto.proto @@ -359,7 +359,10 @@ import "CommonProto.proto"; repeated Item item =2; } - + message modifyHeadFrameRequest{ + //修改头像框 + optional int32 headFrameId = 1; + }