From f38f727aa32b4f419e98ec40ef77f9dc8da28f2e Mon Sep 17 00:00:00 2001 From: hahwu <31872165+hahwu@users.noreply.github.com> Date: Thu, 4 Dec 2025 18:08:06 +0800 Subject: [PATCH] =?UTF-8?q?=E7=8C=AB=E8=8D=89=E5=A4=A7=E4=BD=9C=E6=88=98-?= =?UTF-8?q?=E5=8F=91=E9=80=81=E8=A1=A8=E6=83=85?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- proto/Gameapi.proto | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/proto/Gameapi.proto b/proto/Gameapi.proto index 59ae3637..1e2c2290 100644 --- a/proto/Gameapi.proto +++ b/proto/Gameapi.proto @@ -2708,6 +2708,7 @@ message CatnipGame{ ResPlayerSimple Partner = 5; // 伙伴 repeated CatnipInvite InviteList = 6; // 邀请列表 repeated CatnipInvite BeInviteList = 7; // 被邀请列表 + int32 Emoji = 8; // 表情id } message CatnipInvite{ @@ -2787,6 +2788,17 @@ message ResCatnipGrandReward{ string Msg = 2; } +// 发送表情 +message ReqCatnipEmoji{ + int32 Id = 1; // 猫草id + int32 EmojiId = 2; // 表情id +} + +message ResCatnipEmoji{ + RES_CODE Code = 1; + string Msg = 2; +} + // -------------------后台管理------------------- message AdminReq{