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