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{