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;