礼物协议1
parent
52308d4129
commit
3be95fd339
|
|
@ -610,4 +610,18 @@ message HeroChangeRequest{
|
||||||
|
|
||||||
message HeroChangeResponse{
|
message HeroChangeResponse{
|
||||||
repeated Hero heros = 1;
|
repeated Hero heros = 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
// 礼物
|
||||||
|
message GiftEquipWearRequest{
|
||||||
|
optional int32 operate = 1;//1:穿,2:脱
|
||||||
|
repeated int32 giftIds = 2;//礼物id列表
|
||||||
|
}
|
||||||
|
|
||||||
|
message GiftEquipInfoRequest{
|
||||||
|
optional string role = 1;//0是主角,其他用英雄唯一id
|
||||||
|
}
|
||||||
|
|
||||||
|
message GiftEquipInfoResponse{
|
||||||
|
repeated int32 giftIds = 1;//礼物id列表
|
||||||
}
|
}
|
||||||
|
|
@ -1643,6 +1643,11 @@ enum MessageType{
|
||||||
GemNewInfoResponse = 6000005;
|
GemNewInfoResponse = 6000005;
|
||||||
GemNewInfoIndication = 6000006;
|
GemNewInfoIndication = 6000006;
|
||||||
|
|
||||||
|
// 礼物
|
||||||
|
GiftEquipWearRequest = 6000007;
|
||||||
|
GiftEquipWearResponse = 6000008;
|
||||||
|
GiftEquipInfoRequest = 6000009;
|
||||||
|
GiftEquipInfoResponse = 6000010;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue