mirror of
https://github.com/isledecomp/isle.git
synced 2024-11-22 15:48:09 -05:00
612eec6889
* Beta matching MxAtom classes * Remove unused getter * Restore operator!= for modern compilers
33 lines
746 B
C++
33 lines
746 B
C++
#ifndef MXMISC_H
|
|
#define MXMISC_H
|
|
|
|
#include "mxtypes.h"
|
|
|
|
class MxAtomSet;
|
|
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();
|
|
MxAtomSet* AtomSet();
|
|
MxObjectFactory* ObjectFactory();
|
|
void DeleteObject(MxDSAction& p_dsAction);
|
|
|
|
#endif // MXMISC_H
|