view hero detail

master_huanxiang
wangyuan 2019-10-15 16:51:59 +08:00
parent f8215aeff0
commit e5d161ad29
2 changed files with 16 additions and 0 deletions

View File

@ -707,6 +707,9 @@ enum MessageType{
VIP_TAKE_REWARD_REQUEST = 12104; //vip
VIP_TAKE_REWARD_RESPONSE = 12105;
VIEW_HERO_INFO_REQUEST = 12106; //
VIEW_HERO_INFO_RESPONSE = 12107;
// W 12200
WORKSHOP_FOUNDATION_REQUEST = 12200; //
WORKSHOP_FOUNDATION_RESPONSE = 12201;

View File

@ -615,4 +615,17 @@ import "CommonProto.proto";
repeated string mailId = 1;
}
message ViewHeroInfoRequest{
optional int32 targetUid = 1;
optional string heroId = 2 ;// id
}
message ViewHeroInfoResponse{
optional Hero hero =1;
repeated Equip equip =2; // 穿
repeated SpecialEffects SpecialEffects = 3;//
optional int32 force = 4 ; //
}