isle-portable/LEGO1/mxloopingflcpresenter.h
Joshua Peisach f7dcdf9894
MxFlcPresenter vtable70, m_unk64 (#304)
* MxFlcPresenter: vtable70

* begin work on MxFlcPresenter's m_unk64

* Add another function that makes use of the FLIC header

* Remove space

---------

Co-authored-by: Christian Semmler <mail@csemmler.com>
2023-11-29 13:35:32 +01:00

30 lines
611 B
C++

#ifndef MXLOOPINGFLCPRESENTER_H
#define MXLOOPINGFLCPRESENTER_H
#include "decomp.h"
#include "mxflcpresenter.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";
}
virtual void NextFrame() override; // vtable+0x64
private:
void Init();
void Destroy(MxBool p_fromDestructor);
undefined4 m_unk68;
};
#endif // MXLOOPINGFLCPRESENTER_H