This commit is contained in:
aozhiwei 2023-10-10 17:58:19 +08:00
parent 613f19373c
commit 816d01e928

View File

@ -277,6 +277,8 @@ public:
bool IsMiniMap();
bool IsNewerMap();
int GetMobaLeftTime();
Team* GetMobaTeamA() { return moba_team_a_; }
Team* GetMobaTeamB() { return moba_team_b_; }
private:
void ShuaAndroid();
@ -432,6 +434,9 @@ private:
const mt::RankMatchConf* rank_match_conf_ = nullptr;
Team* moba_team_a_ = nullptr;
Team* moba_team_b_ = nullptr;
friend class Incubator;
friend class Team;
};