2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-10 03:07:43 +00:00

CTeamAiMgr: Make reference parameters to GetTeamAiMgr() const

No modifications to these parameters are being made, so we can make that
explicit in the interface.
This commit is contained in:
Lioncash
2020-05-02 22:39:49 -04:00
parent 21a33b01ad
commit d0233b7767
2 changed files with 5 additions and 4 deletions

View File

@@ -114,6 +114,6 @@ public:
static bool CanAcceptAttacker(EAttackType type, CStateManager& mgr, TUniqueId mgrId, TUniqueId aiId);
static bool AddAttacker(EAttackType type, CStateManager& mgr, TUniqueId mgrId, TUniqueId aiId);
static TUniqueId GetTeamAiMgr(CAi& ai, CStateManager& mgr);
static TUniqueId GetTeamAiMgr(const CAi& ai, const CStateManager& mgr);
};
} // namespace urde