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

committed by
GitHub

parent
e928fc9425
commit
b449da1fa3
@@ -4,32 +4,31 @@
|
||||
#include "mxmusicpresenter.h"
|
||||
|
||||
// VTABLE 0x100dca20
|
||||
class MxMIDIPresenter : public MxMusicPresenter
|
||||
{
|
||||
class MxMIDIPresenter : public MxMusicPresenter {
|
||||
public:
|
||||
MxMIDIPresenter();
|
||||
virtual ~MxMIDIPresenter() override;
|
||||
MxMIDIPresenter();
|
||||
virtual ~MxMIDIPresenter() override;
|
||||
|
||||
// OFFSET: LEGO1 0x100c2650
|
||||
inline virtual const char *ClassName() const override // vtable+0xc
|
||||
{
|
||||
// 0x10101df8
|
||||
return "MxMIDIPresenter";
|
||||
}
|
||||
// OFFSET: LEGO1 0x100c2650
|
||||
inline virtual const char* ClassName() const override // vtable+0xc
|
||||
{
|
||||
// 0x10101df8
|
||||
return "MxMIDIPresenter";
|
||||
}
|
||||
|
||||
// OFFSET: LEGO1 0x100c2660
|
||||
inline virtual MxBool IsA(const char *name) const override // vtable+0x10
|
||||
{
|
||||
return !strcmp(name, MxMIDIPresenter::ClassName()) || MxMusicPresenter::IsA(name);
|
||||
}
|
||||
// OFFSET: LEGO1 0x100c2660
|
||||
inline virtual MxBool IsA(const char* name) const override // vtable+0x10
|
||||
{
|
||||
return !strcmp(name, MxMIDIPresenter::ClassName()) || MxMusicPresenter::IsA(name);
|
||||
}
|
||||
|
||||
virtual void DoneTickle() override; // vtable+0x2c
|
||||
virtual void DoneTickle() override; // vtable+0x2c
|
||||
|
||||
private:
|
||||
void Init();
|
||||
void Destroy(MxBool);
|
||||
void Init();
|
||||
void Destroy(MxBool);
|
||||
|
||||
undefined4 m_unk54;
|
||||
undefined4 m_unk54;
|
||||
};
|
||||
|
||||
#endif // MXMIDIPRESENTER_H
|
||||
|
Reference in New Issue
Block a user