mirror of
https://github.com/isledecomp/isle.git
synced 2025-10-23 08:24:16 +00:00
18 lines
268 B
C++
18 lines
268 B
C++
#include "legoomni.h"
|
|
|
|
LegoOmni *LegoOmni::m_instance = NULL;
|
|
|
|
LegoOmni *LegoOmni::GetInstance()
|
|
{
|
|
return m_instance;
|
|
}
|
|
|
|
LegoOmni *Lego()
|
|
{
|
|
return LegoOmni::GetInstance();
|
|
}
|
|
|
|
LegoVideoManager *VideoManager()
|
|
{
|
|
return LegoOmni::GetInstance()->GetVideoManager();
|
|
} |