获取无尽编队
parent
8b934e6557
commit
4d0dd49782
|
@ -13,6 +13,15 @@ import "CommonProto.proto";
|
|||
repeated Hero heroList = 1;
|
||||
optional bool isSendFinish =2; //是否发送完成
|
||||
}
|
||||
//获取无尽副本可使用英雄
|
||||
message GetEndlessHeroListInfoRequest{
|
||||
optional int32 index = 1; //第一次请求索引为0, 第二次:第一次索引+每页的数量
|
||||
}
|
||||
|
||||
message GetEndlessHeroListInfoResponse{
|
||||
repeated Hero heroList = 1;
|
||||
optional bool isSendFinish =2; //是否发送完成
|
||||
}
|
||||
|
||||
message DrawHeroRequest{
|
||||
optional int32 type = 1;
|
||||
|
|
|
@ -510,6 +510,9 @@ enum MessageType{
|
|||
|
||||
GET_ALL_PROPERTY_INFO_REQUEST = 16689;//获取图鉴
|
||||
GET_ALL_PROPERTY_INFO_RESPONSE = 16690;
|
||||
|
||||
GET_ENDLESS_HERO_LIST_INFO_REQUEST = 16691;//获取无尽副本可以使用的英雄
|
||||
GET_ENDLESS_HERO_LIST_INFO_RESPONSE = 16692;
|
||||
|
||||
// H 10700
|
||||
HERO_RAND_REQQUEST = 10701;
|
||||
|
|
Loading…
Reference in New Issue