2023-06-23 12:17:41 -04:00
|
|
|
#include "mxomnicreateflags.h"
|
|
|
|
|
2023-12-06 07:10:45 -05:00
|
|
|
// FUNCTION: LEGO1 0x100b0a30
|
2023-06-23 12:17:41 -04:00
|
|
|
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
|
|
|
}
|