mirror of
https://github.com/isledecomp/isle.git
synced 2024-11-23 08:08:03 -05:00
17 lines
433 B
C++
17 lines
433 B
C++
#include "mxomnicreateflags.h"
|
|
|
|
// OFFSET: LEGO1 0x100b0a30
|
|
MxOmniCreateFlags::MxOmniCreateFlags()
|
|
{
|
|
this->CreateObjectFactory(TRUE);
|
|
this->CreateVariableTable(TRUE);
|
|
this->CreateTickleManager(TRUE);
|
|
this->CreateNotificationManager(TRUE);
|
|
this->CreateVideoManager(TRUE);
|
|
this->CreateSoundManager(TRUE);
|
|
this->CreateMusicManager(TRUE);
|
|
this->CreateEventManager(TRUE);
|
|
|
|
this->CreateTimer(TRUE);
|
|
this->CreateStreamer(TRUE);
|
|
}
|