mirror of
https://github.com/isledecomp/isle-portable.git
synced 2024-11-22 15:37:55 -05:00
806afaa210
* Add miniaudio * WIP * static const * Fix missing looping * Fix volume * Implement 3D sound, WIP * Remove unused WinMM code * Update README.md * Fixes * Fix naming * Fix naming * disable ma threading * Invert Z axis for OpenGL system * Update comment * Set rolloff * Fix minimize/maximize suspension * Rename function * SDL3: changed macro name
31 lines
692 B
C++
31 lines
692 B
C++
#ifndef MXMISC_H
|
|
#define MXMISC_H
|
|
|
|
#include "mxtypes.h"
|
|
|
|
class MxAtomSet;
|
|
class MxDSAction;
|
|
class MxEventManager;
|
|
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();
|
|
MxEventManager* EventManager();
|
|
MxResult Start(MxDSAction*);
|
|
MxNotificationManager* NotificationManager();
|
|
MxVideoManager* MVideoManager();
|
|
MxAtomSet* AtomSet();
|
|
MxObjectFactory* ObjectFactory();
|
|
void DeleteObject(MxDSAction& p_dsAction);
|
|
|
|
#endif // MXMISC_H
|