This commit is contained in:
aozhiwei 2023-04-05 20:23:01 +08:00
parent 62fe01cb8f
commit 55c2e8bc79

View File

@ -227,6 +227,8 @@ public:
void AddReportBullet(int bullet_uniid);
bool IsDestorying() { return destorying_; }
void AddFrameCall(FrameCallCb cb, void* context);
void SetVictoryTeam(Team* team) { victory_team_ = team;};
Team* GetVictoryTeam() { return victory_team_;};
private:
void ShuaAndroid();
@ -381,6 +383,8 @@ private:
FrameCallNode* bot_node_ = nullptr;
FrameCallNode* work_node_ = nullptr;
Team* victory_team_ = nullptr;
friend class Incubator;
friend class Team;
};