isle/LEGO1/mxomnicreateflags.cpp

18 lines
433 B
C++
Raw Normal View History

2023-06-23 12:17:41 -04:00
#include "mxomnicreateflags.h"
// OFFSET: LEGO1 0x100b0a30
MxOmniCreateFlags::MxOmniCreateFlags()
{
2023-10-24 19:38:27 -04:00
this->CreateObjectFactory(TRUE);
this->CreateVariableTable(TRUE);
this->CreateTickleManager(TRUE);
this->CreateNotificationManager(TRUE);
this->CreateVideoManager(TRUE);
this->CreateSoundManager(TRUE);
this->CreateMusicManager(TRUE);
this->CreateEventManager(TRUE);
2023-06-23 12:17:41 -04:00
2023-10-24 19:38:27 -04:00
this->CreateTimer(TRUE);
this->CreateStreamer(TRUE);
2023-06-23 12:17:41 -04:00
}