From 963f504e69cba676c7f597a5b0e5dce8b3c21637 Mon Sep 17 00:00:00 2001 From: hahwu <31872165+hahwu@users.noreply.github.com> Date: Wed, 30 Jul 2025 11:41:46 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0=E5=8D=8F=E8=AE=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- proto/Gameapi.proto | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/proto/Gameapi.proto b/proto/Gameapi.proto index 456305fa..27703288 100644 --- a/proto/Gameapi.proto +++ b/proto/Gameapi.proto @@ -1385,6 +1385,12 @@ message ResFriendLog{ message NotifyFriendLog{ ResFriendLog info = 1; + FriendBubbleInfo Bubble = 2; // 气泡 +} + +message FriendBubbleInfo{ + int32 Id = 1; // 气泡id + int32 Type = 2; // 气泡类型 1:普通 2: } message NotifyFriendCard{ @@ -1498,6 +1504,10 @@ message ResFriendTimeLine{ repeated ResFriendLog Log = 1; } +message ResFriendBubble{ + repeated FriendBubbleInfo Bubble = 1; // 气泡 +} + // 时间线点赞 message ReqFriendTLUpvote{ int32 Id = 1;