Compare commits

...

5 Commits

Author SHA1 Message Date
PC-202302260912\Administrator 2f40a633cd 自动战斗 2023-07-04 17:54:13 +08:00
PC-202302260912\Administrator 1da1adf178 自动战斗 2023-07-04 17:25:17 +08:00
PC-202302260912\Administrator 6e98984655 自动战斗 2023-07-04 17:23:15 +08:00
PC-202302260912\Administrator 6ae3e2de95 自动战斗 2023-07-04 17:14:15 +08:00
PC-202302260912\Administrator 7dc1a2eaab 专属商店一键购买 2023-06-30 11:39:25 +08:00
3 changed files with 24 additions and 0 deletions

View File

@ -18,6 +18,16 @@ import "CommonProto.proto";
//
optional FightData fightData = 1;
}
//
message AutoFightRequest {
optional int32 fightId = 1;//id
optional int32 teamId = 2;//id
}
message AutoFightResponse {
optional int32 result = 1;//
optional Drop drop = 2;//
}
//
message FightEndRequest {

View File

@ -1545,6 +1545,12 @@ enum MessageType{
VouchersBuyGiftRequest = 3050227;//
StoreOneClickPurchaseRequest = 3050228;//
StoreOneClickPurchaseResponse = 3050229;
AutoFightRequest = 3050230;//
AutoFightResponse = 3050231;
//==========================================================800000global ==========================================================
GetWorldServerRequest = 800001;//ip

View File

@ -1358,4 +1358,12 @@ message choiceWishHeroResponse{
message wishDrawCardIndication{
//
repeated wishDrawCardInfo infoList = 1;
}
//
message StoreOneClickPurchaseRequest{
optional int32 id = 1;
}
message StoreOneClickPurchaseResponse{
optional Drop drop = 1;
}