mirror of
https://github.com/isledecomp/isle.git
synced 2026-01-12 03:01:17 +00:00
19 lines
269 B
C++
19 lines
269 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();
|
|
}
|