From 7ecb94bdddca46283cc4b7e04bf9bae4c65b7d89 Mon Sep 17 00:00:00 2001 From: wangyuan Date: Mon, 12 Aug 2019 16:21:45 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0=E7=8A=B6=E6=80=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- protos/MessageTypeProto.proto | 3 +++ protos/PlayerInfoProto.proto | 4 ++++ 2 files changed, 7 insertions(+) diff --git a/protos/MessageTypeProto.proto b/protos/MessageTypeProto.proto index cbaea90..0c73a9a 100644 --- a/protos/MessageTypeProto.proto +++ b/protos/MessageTypeProto.proto @@ -534,6 +534,9 @@ enum MessageType{ UPDATE_BAG_INDICATION = 12008; //更新背包 + UPDATE_STATE_REQUEST = 12009; // 更新客户状态 + UPDATE_STATE_RESPONSE = 12010; + // V 12100 VIEW_FIGHTREPLAY_REQUEST = 12100; // 查看战斗回放 VIEW_FIGHTREPLAY_RESPONSE = 12101; diff --git a/protos/PlayerInfoProto.proto b/protos/PlayerInfoProto.proto index 6fe77e1..b6f4d1c 100644 --- a/protos/PlayerInfoProto.proto +++ b/protos/PlayerInfoProto.proto @@ -461,3 +461,7 @@ import "CommonProto.proto"; } + message UpdateStateRequest{ + optional int32 type = 1; // 类型信息 1 : 七日狂欢领取活动 + } +