From 5943b3b6bc76e3abc2dcec4590880e827734dbe7 Mon Sep 17 00:00:00 2001 From: yuanshuai <243578945@qq.com> Date: Thu, 23 Sep 2021 10:06:50 +0800 Subject: [PATCH] =?UTF-8?q?=E5=8D=8F=E8=AE=AE=E4=BF=AE=E6=94=B9=E6=8F=90?= =?UTF-8?q?=E4=BA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- protos/HeroInfoProto.proto | 8 ++++++++ protos/MessageTypeProto.proto | 3 +++ 2 files changed, 11 insertions(+) diff --git a/protos/HeroInfoProto.proto b/protos/HeroInfoProto.proto index ccf4408..dcfd0ef 100644 --- a/protos/HeroInfoProto.proto +++ b/protos/HeroInfoProto.proto @@ -441,6 +441,14 @@ import "CommonProto.proto"; repeated SixiangxinfaPropertyInfo infoList = 2; } + + + //获取好感度数据协议 + message GetLikableDataResponse{ + repeated LikableInfo infoList = 1; + + } + //好感度提升协议 message HeroUpLikableRequest{ diff --git a/protos/MessageTypeProto.proto b/protos/MessageTypeProto.proto index 8909a06..1e5ebe7 100644 --- a/protos/MessageTypeProto.proto +++ b/protos/MessageTypeProto.proto @@ -1109,6 +1109,9 @@ enum MessageType{ HERO_UP_LIKABLE_REQUEST = 20205;//英雄提升好感度请求 HERO_UP_LIKABLE_RESPONSE = 20206; + + GET_LIKABLE_DATA_REQUEST = 20207;//获取英雄好感度数据请求 + GET_LIKABLE_DATA_RESPONSE = 20208;