mirror of
https://github.com/isledecomp/isle-portable.git
synced 2024-11-22 23:48:12 -05:00
16 lines
461 B
C++
16 lines
461 B
C++
#include "mxomnicreateflags.h"
|
|
|
|
MxOmniCreateFlags::MxOmniCreateFlags()
|
|
{
|
|
this->CreateObjectFactory(MX_TRUE);
|
|
this->CreateVariableTable(MX_TRUE);
|
|
this->CreateTickleManager(MX_TRUE);
|
|
this->CreateNotificationManager(MX_TRUE);
|
|
this->CreateVideoManager(MX_TRUE);
|
|
this->CreateSoundManager(MX_TRUE);
|
|
this->CreateMusicManager(MX_TRUE);
|
|
this->CreateEventManager(MX_TRUE);
|
|
|
|
this->CreateTimer(MX_TRUE);
|
|
this->CreateStreamer(MX_TRUE);
|
|
}
|