mirror of
https://github.com/isledecomp/isle.git
synced 2024-11-22 15:48:09 -05:00
18 lines
No EOL
268 B
C++
18 lines
No EOL
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();
|
|
} |