mirror of
https://github.com/isledecomp/isle.git
synced 2025-10-23 08:24:16 +00:00
Introduce clang-format (#240)
This commit is contained in:

committed by
GitHub

parent
e928fc9425
commit
b449da1fa3
@@ -1,44 +1,40 @@
|
||||
#ifndef MXWAVEPRESENTER_H
|
||||
#define MXWAVEPRESENTER_H
|
||||
|
||||
#include "mxsoundpresenter.h"
|
||||
|
||||
#include "decomp.h"
|
||||
#include "mxsoundpresenter.h"
|
||||
|
||||
// VTABLE 0x100d49a8
|
||||
// SIZE 0x6c
|
||||
class MxWavePresenter : public MxSoundPresenter
|
||||
{
|
||||
class MxWavePresenter : public MxSoundPresenter {
|
||||
private:
|
||||
void Init();
|
||||
void Init();
|
||||
|
||||
public:
|
||||
MxWavePresenter() {
|
||||
Init();
|
||||
}
|
||||
MxWavePresenter() { Init(); }
|
||||
|
||||
// OFFSET: LEGO1 0x1000d6c0
|
||||
inline virtual const char *ClassName() const override // vtable+0x0c
|
||||
{
|
||||
// 0x100f07b4
|
||||
return "MxWavePresenter";
|
||||
}
|
||||
// OFFSET: LEGO1 0x1000d6c0
|
||||
inline virtual const char* ClassName() const override // vtable+0x0c
|
||||
{
|
||||
// 0x100f07b4
|
||||
return "MxWavePresenter";
|
||||
}
|
||||
|
||||
// OFFSET: LEGO1 0x1000d6d0
|
||||
inline virtual MxBool IsA(const char *name) const override // vtable+0x10
|
||||
{
|
||||
return !strcmp(name, MxWavePresenter::ClassName()) || MxSoundPresenter::IsA(name);
|
||||
}
|
||||
// OFFSET: LEGO1 0x1000d6d0
|
||||
inline virtual MxBool IsA(const char* name) const override // vtable+0x10
|
||||
{
|
||||
return !strcmp(name, MxWavePresenter::ClassName()) || MxSoundPresenter::IsA(name);
|
||||
}
|
||||
|
||||
undefined4 m_unk54;
|
||||
undefined4 m_unk58;
|
||||
undefined4 m_unk5c;
|
||||
undefined4 m_unk60;
|
||||
undefined m_unk64;
|
||||
undefined m_unk65;
|
||||
undefined m_unk66;
|
||||
undefined m_unk67;
|
||||
undefined m_unk68;
|
||||
undefined4 m_unk54;
|
||||
undefined4 m_unk58;
|
||||
undefined4 m_unk5c;
|
||||
undefined4 m_unk60;
|
||||
undefined m_unk64;
|
||||
undefined m_unk65;
|
||||
undefined m_unk66;
|
||||
undefined m_unk67;
|
||||
undefined m_unk68;
|
||||
};
|
||||
|
||||
#endif // MXWAVEPRESENTER_H
|
||||
|
Reference in New Issue
Block a user