From efe7b3cf5e301c397a25febfd96eb97f22bab0fb Mon Sep 17 00:00:00 2001 From: hahwu <31872165+hahwu@users.noreply.github.com> Date: Wed, 4 Mar 2026 10:24:10 +0800 Subject: [PATCH] =?UTF-8?q?=E5=8D=8F=E8=AE=AE=E6=9B=B4=E6=96=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- proto/Gameapi.proto | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/proto/Gameapi.proto b/proto/Gameapi.proto index f1527b87..67939412 100644 --- a/proto/Gameapi.proto +++ b/proto/Gameapi.proto @@ -1738,6 +1738,14 @@ message ResFriendReplyNotify{ int32 Time = 3; } +// 玩家处理离线信息聚合弹窗 +message ResPlayerLougouMsg{ + int32 Type = 1; // 弹窗类型:0 添加好友信息;1 其他信息 + string Name = 2; // 显示的名称 + repeated int32 Face = 3; // 聚合头像 + int32 Count = 4; // 处理的信息数量 +} + // 申请好友 message ReqApplyFriend{ int64 Uid = 1; @@ -1750,6 +1758,16 @@ message ResApplyFriend{ int64 Uid = 3; } +// 观看广告 +message ReqAdWatch{ + int32 Type = 1; // 观看广告的途径 +} + +message ResAdWatch{ + RES_CODE Code = 1; + string Msg = 2; +} + // 同意申请 message ReqAgreeFriend{ int64 Uid = 1;