added some legoomni functions and named some isle global vars

This commit is contained in:
itsmattkc
2023-06-10 22:11:05 -07:00
parent d336f65abe
commit 03fcad0bd2
8 changed files with 131 additions and 54 deletions

13
LEGO1/legoomni.cpp Normal file
View File

@@ -0,0 +1,13 @@
#include "legoomni.h"
LegoOmni *LegoOmni::m_instance = NULL;
LegoOmni *LegoOmni::GetInstance()
{
return m_instance;
}
LegoOmni *Lego()
{
return LegoOmni::GetInstance();
}