mirror of
https://github.com/isledecomp/isle.git
synced 2024-11-23 08:08:03 -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();
|
|
}
|