added even more definitions

This commit is contained in:
itsmattkc
2023-06-18 20:56:55 -07:00
parent 319b52f248
commit 2a93655f06
10 changed files with 36 additions and 2 deletions

View File

@@ -2,17 +2,20 @@
LegoOmni *LegoOmni::m_instance = NULL;
// OFFSET: LEGO1 0x1005ad10
LegoOmni *LegoOmni::GetInstance()
{
return m_instance;
}
// OFFSET: LEGO1 0x10015700
LegoOmni *Lego()
{
return LegoOmni::GetInstance();
}
// OFFSET: LEGO1 0x10015720
LegoVideoManager *VideoManager()
{
return LegoOmni::GetInstance()->GetVideoManager();
}
}