2023-06-19 01:36:07 -04:00
|
|
|
#ifndef MXSOUNDMANAGER_H
|
|
|
|
#define MXSOUNDMANAGER_H
|
|
|
|
|
2023-09-19 10:42:39 -04:00
|
|
|
#include "mxaudiomanager.h"
|
2023-06-29 04:10:08 -04:00
|
|
|
|
|
|
|
// VTABLE 0x100dc128
|
|
|
|
// SIZE 0x3c
|
2023-09-19 10:42:39 -04:00
|
|
|
// Base vtables are: MxCore -> 0x100dc6b0 -> MxAudioManager -> MxSoundManager
|
|
|
|
class MxSoundManager : public MxAudioManager
|
2023-06-19 01:36:07 -04:00
|
|
|
{
|
2023-06-29 04:10:08 -04:00
|
|
|
public:
|
|
|
|
MxSoundManager();
|
|
|
|
virtual ~MxSoundManager() override; // vtable+0x0
|
|
|
|
|
2023-07-02 02:53:54 -04:00
|
|
|
private:
|
|
|
|
void Init();
|
|
|
|
int m_unk30;
|
|
|
|
int m_unk34;
|
2023-06-19 01:36:07 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // MXSOUNDMANAGER_H
|