推送巅峰赛进度信息

master_huanxiang
wangyuan 2019-12-12 18:32:07 +08:00
parent 9929a07d50
commit 05350722db
2 changed files with 29 additions and 1 deletions

View File

@ -96,6 +96,26 @@ import "CommonProto.proto";
repeated ChampionTeamPersonInfo championTeamPersonInfo =1;
}
message ChampionTwoEnemInfo{
optional ArenaEnemy redEnemy = 1; //
optional ArenaEnemy blueEnemy = 2; //
optional int32 fightResult = 3 ;// -1
optional int32 roundTimes = 4; //
}
message ChampionMyBetDetail{
optional ChampionTwoEnemInfo enemyPairInfo = 1; //
optional int32 betResult = 2 ;// 0 1 2 3
}
message ChanpionGetAllMyBattleHistoryResponse{
repeated ChampionTwoEnemInfo enemyPairInfo =1; // -1
}
message ChampionGetAllMyBetInfoResponse{
repeated ChampionMyBetDetail championMyBetDetails =1;
}

View File

@ -139,9 +139,17 @@ enum MessageType{
CHAMPION_GET_REQUEST = 10209; //
CHAMPION_GET_RESPONSE = 10210;
CHAMPION_BET_GUESS_REQUEST = 10211; //
CHAMPION_BET_GUESS_REQUEST = 10211; //
CHAMPION_BET_GUESS_RESPONSE = 10212;
CHAMPION_GET_RANK_REQUEST = 10213; //
CHAMPION_GET_RANK_RESPONSE = 10214;
CHAMPION_GET_MYALL_BET_REQUEST = 10215; //
CHAMPION_GET_MYALL_BET_RESPONSE = 10216;
CHAMPION_PROGRESS_UPDATE_INDICATION = 10217;//
// D 10300
DRAW_HERO_REQUEST = 10300; //
DRAW_HERO_RESPONSE = 10301;