add TransitionManager

This commit is contained in:
Misha 2023-06-29 16:12:44 +03:00
parent 23550eaf4e
commit 2f4b88ab5a
2 changed files with 8 additions and 0 deletions

View File

@ -85,6 +85,13 @@ LegoNavController *NavController()
return LegoOmni::GetInstance()->GetNavController();
}
// OFFSET: LEGO1 0x10015900
MxTransitionManager *TransitionManager()
{
return LegoOmni::GetInstance()->GetTransitionManager();
}
// OFFSET: LEGO1 0x1005b5f0
long LegoOmni::Notify(MxParam &p)
{

View File

@ -71,6 +71,7 @@ class LegoOmni : public MxOmni
LegoPlantManager *GetLegoPlantManager() { return m_plantManager; }
LegoGameState *GetGameState() { return m_gameState; }
LegoNavController *GetNavController() { return m_navController; }
MxTransitionManager *GetTransitionManager() { return m_transitionManager; }
private:
int m_unk68;