mirror of
https://github.com/isledecomp/isle.git
synced 2024-11-23 08:08:03 -05:00
34e09c2bb3
* Rename MxMusicPresenter function vtable38 * Rename MxMusicPresenter function vtable38 * MxMediaPresenter, MxMusicManager and MxMusicPresenter * Refactoring Destroy functions * MxMediaManager & MxMusicPresenter * Fix some vtable declarations, more renames * Fix MxEventManager * More rename fixes --------- Co-authored-by: Christian Semmler <mail@csemmler.com>
30 lines
573 B
C++
30 lines
573 B
C++
#ifndef MXLOOPINGFLCPRESENTER_H
|
|
#define MXLOOPINGFLCPRESENTER_H
|
|
|
|
#include "mxflcpresenter.h"
|
|
|
|
#include "decomp.h"
|
|
|
|
// VTABLE 0x100dc480
|
|
// SIZE 0x6c
|
|
class MxLoopingFlcPresenter : public MxFlcPresenter
|
|
{
|
|
public:
|
|
MxLoopingFlcPresenter();
|
|
virtual ~MxLoopingFlcPresenter() override;
|
|
|
|
// OFFSET: LEGO1 0x100b4380
|
|
inline virtual const char* ClassName() const override // vtable+0xc
|
|
{
|
|
// 0x10101e20
|
|
return "MxLoopingFlcPresenter";
|
|
}
|
|
|
|
private:
|
|
void Init();
|
|
void Destroy(MxBool p_fromDestructor);
|
|
|
|
undefined4 m_unk68;
|
|
};
|
|
|
|
#endif // MXLOOPINGFLCPRESENTER_H
|