From cd2ca89bf587927184248d7f9b846c06fad1effa Mon Sep 17 00:00:00 2001 From: wangyuan Date: Sat, 15 Jun 2019 15:42:23 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BA=94=E7=82=B9=E5=88=B7=E6=96=B0=E6=8E=A8?= =?UTF-8?q?=E9=80=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- protos/MessageTypeProto.proto | 2 ++ protos/PlayerInfoProto.proto | 6 ++++++ 2 files changed, 8 insertions(+) diff --git a/protos/MessageTypeProto.proto b/protos/MessageTypeProto.proto index f8d7439..10ea22b 100644 --- a/protos/MessageTypeProto.proto +++ b/protos/MessageTypeProto.proto @@ -114,6 +114,8 @@ enum MessageType{ FRIEND_SEARCH_REQUEST = 10512; //搜索好友 FRIEND_SEARCH_RESPONSE = 10513; + + FIVE_PLAYER_REFLUSH_INDICATION = 10514; //五点玩家信息刷新 // G 10600 GET_PLAYERINFO_REQUEST = 10600; // GET_PLAYERINFO_RESPONSE = 10601; diff --git a/protos/PlayerInfoProto.proto b/protos/PlayerInfoProto.proto index fa79f6b..c02157b 100644 --- a/protos/PlayerInfoProto.proto +++ b/protos/PlayerInfoProto.proto @@ -312,6 +312,12 @@ import "CommonProto.proto"; repeated int32 friendIds = 1; } + message FivePlayerUpdateIndication{ + optional int32 hadTakeDailyBox = 1 ;//是否领取每日礼包 1:已领取vip等级 -1:未领取 + repeated Privilege privilege =2 ; //特权使用信息 + repeated ActivityInfo ActivityInfo =3;// 活动刷新 + } +