isle-portable/LEGO1/mxloopingflcpresenter.h
Joshua Peisach 62d953c6c3
MxLoopingFlcPresenter ctor/half of Init (#158)
* MxLoopingFlcPresenter ctor/half of Init

* MxLoopingFlcPresenter - finish Init, stub Destroy function, match dtor

* Update mxloopingflcpresenter.cpp

---------

Co-authored-by: Christian Semmler <mail@csemmler.com>
2023-10-03 17:38:03 -04:00

30 lines
556 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);
undefined4 m_unk68;
};
#endif // MXLOOPINGFLCPRESENTER_H