2024-03-09 15:07:52 -05:00
|
|
|
#ifndef MXMISC_H
|
|
|
|
#define MXMISC_H
|
|
|
|
|
|
|
|
#include "mxtypes.h"
|
|
|
|
|
2024-04-25 11:43:42 -04:00
|
|
|
class MxAtomSet;
|
2024-03-09 15:07:52 -05:00
|
|
|
class MxDSAction;
|
|
|
|
class MxEventManager;
|
|
|
|
class MxMusicManager;
|
|
|
|
class MxNotificationManager;
|
|
|
|
class MxObjectFactory;
|
|
|
|
class MxSoundManager;
|
|
|
|
class MxStreamer;
|
|
|
|
class MxTickleManager;
|
|
|
|
class MxTimer;
|
|
|
|
class MxVariableTable;
|
|
|
|
class MxVideoManager;
|
|
|
|
|
|
|
|
MxTickleManager* TickleManager();
|
|
|
|
MxTimer* Timer();
|
|
|
|
MxStreamer* Streamer();
|
|
|
|
MxSoundManager* MSoundManager();
|
|
|
|
MxVariableTable* VariableTable();
|
|
|
|
MxMusicManager* MusicManager();
|
|
|
|
MxEventManager* EventManager();
|
|
|
|
MxResult Start(MxDSAction*);
|
|
|
|
MxNotificationManager* NotificationManager();
|
|
|
|
MxVideoManager* MVideoManager();
|
2024-04-25 11:43:42 -04:00
|
|
|
MxAtomSet* AtomSet();
|
2024-03-09 15:07:52 -05:00
|
|
|
MxObjectFactory* ObjectFactory();
|
|
|
|
void DeleteObject(MxDSAction& p_dsAction);
|
|
|
|
|
|
|
|
#endif // MXMISC_H
|