From fefd9ee1eca83334395d38095a5d52d3ddd8567d Mon Sep 17 00:00:00 2001 From: lvxinran Date: Sat, 31 Oct 2020 05:04:41 +0800 Subject: [PATCH] =?UTF-8?q?=E7=9A=AE=E8=82=A4=E5=8D=8F=E8=AE=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- protos/HeroInfoProto.proto | 4 ++++ protos/MessageTypeProto.proto | 5 +++++ 2 files changed, 9 insertions(+) diff --git a/protos/HeroInfoProto.proto b/protos/HeroInfoProto.proto index 2722f77..16201d0 100644 --- a/protos/HeroInfoProto.proto +++ b/protos/HeroInfoProto.proto @@ -271,6 +271,10 @@ import "CommonProto.proto"; message GetAllSkinResponse{ repeated SkinInfo skinInfo = 1; } + message ChangeSkinRequest{ + optional string heroId = 1; + optional int32 skinId = 2; + } diff --git a/protos/MessageTypeProto.proto b/protos/MessageTypeProto.proto index 9e51380..c7daf76 100644 --- a/protos/MessageTypeProto.proto +++ b/protos/MessageTypeProto.proto @@ -516,6 +516,11 @@ enum MessageType{ HERO_LOCK_CHANGE_REQUEST = 10707 ;// 英雄上锁操作 HERO_LOCK_CHANGE_RESPONSE = 10708; + HERO_SKIN_GET_ALL_REQUEST = 10709;//获取所有皮肤 + HERO_SKIN_GET_ALL_RESPONSE = 10710; + + HERO_SKIN_CHANGE_REQUEST = 10711;//更换皮肤 + HERO_SKIN_CHANGE_RESPONSE = 10712; // I 10800 // J 10900