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;// 活动刷新 + } +