mirror of
https://github.com/isledecomp/isle-portable.git
synced 2024-11-22 15:37:55 -05:00
13 lines
178 B
C++
13 lines
178 B
C++
#include "legoomni.h"
|
|
|
|
LegoOmni *LegoOmni::m_instance = NULL;
|
|
|
|
LegoOmni *LegoOmni::GetInstance()
|
|
{
|
|
return m_instance;
|
|
}
|
|
|
|
LegoOmni *Lego()
|
|
{
|
|
return LegoOmni::GetInstance();
|
|
}
|