mirror of
https://github.com/isledecomp/isle.git
synced 2026-01-12 11:11:16 +00:00
18 lines
315 B
C++
18 lines
315 B
C++
#ifndef MXSOUNDMANAGER_H
|
|
#define MXSOUNDMANAGER_H
|
|
|
|
#include "mxcore.h"
|
|
|
|
// VTABLE 0x100dc128
|
|
// SIZE 0x3c
|
|
// Base vtables are: MxCore -> 0x100dc6b0 -> 0x100dc6e0 -> MxSoundManager
|
|
class MxSoundManager
|
|
{
|
|
public:
|
|
MxSoundManager();
|
|
virtual ~MxSoundManager() override; // vtable+0x0
|
|
|
|
};
|
|
|
|
#endif // MXSOUNDMANAGER_H
|