mirror of
https://github.com/isledecomp/isle-portable.git
synced 2024-11-22 23:48:12 -05:00
MxMIDIPresenter: ClassName, IsA (#146)
This commit is contained in:
parent
5b7954a97b
commit
f7743c51fb
1 changed files with 14 additions and 0 deletions
|
@ -8,6 +8,20 @@ class MxMIDIPresenter : public MxMusicPresenter
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
MxMIDIPresenter();
|
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);
|
||||||
|
}
|
||||||
|
|
||||||
private:
|
private:
|
||||||
void Init();
|
void Init();
|
||||||
undefined4 m_unk54;
|
undefined4 m_unk54;
|
||||||
|
|
Loading…
Reference in a new issue