2023-06-11 01:11:05 -04:00
|
|
|
#include "legoomni.h"
|
|
|
|
|
|
|
|
LegoOmni *LegoOmni::m_instance = NULL;
|
|
|
|
|
2023-06-18 23:56:55 -04:00
|
|
|
// OFFSET: LEGO1 0x1005ad10
|
2023-06-11 01:11:05 -04:00
|
|
|
LegoOmni *LegoOmni::GetInstance()
|
|
|
|
{
|
|
|
|
return m_instance;
|
|
|
|
}
|
|
|
|
|
2023-06-18 23:56:55 -04:00
|
|
|
// OFFSET: LEGO1 0x10015700
|
2023-06-11 01:11:05 -04:00
|
|
|
LegoOmni *Lego()
|
|
|
|
{
|
|
|
|
return LegoOmni::GetInstance();
|
|
|
|
}
|
2023-06-18 07:45:39 -04:00
|
|
|
|
2023-06-18 23:56:55 -04:00
|
|
|
// OFFSET: LEGO1 0x10015720
|
2023-06-18 07:45:39 -04:00
|
|
|
LegoVideoManager *VideoManager()
|
|
|
|
{
|
|
|
|
return LegoOmni::GetInstance()->GetVideoManager();
|
2023-06-18 23:56:55 -04:00
|
|
|
}
|