implement LegoPathPresenter (#238)

* implement LegoPathPresenter

implement some LegoPathPresenter functions

* Update legopathpresenter.cpp

* Minor fixes

* Order functions

---------

Co-authored-by: Christian Semmler <mail@csemmler.com>
This commit is contained in:
vMidz
2023-10-23 17:08:22 +03:00
committed by GitHub
parent 34ce795cdd
commit 587ac7a9d7
2 changed files with 74 additions and 3 deletions

View File

@@ -23,7 +23,18 @@ public:
return !strcmp(name, LegoPathPresenter::ClassName()) || MxMediaPresenter::IsA(name);
}
virtual void RepeatingTickle() override; // vtable+0x24
virtual void ParseExtra() override; // vtable+0x30
virtual MxResult AddToManager() override; // vtable+0x34
virtual void Destroy() override; // vtable+0x38
private:
void Init();
protected:
void Destroy(MxBool p_fromDestructor);
MxAtomId m_atomId; // 0x50
};
#endif // LEGOPATHPRESENTER_H