isle/LEGO1/mxloopingflcpresenter.h
MS bcb7bec68b
Improve handling of variables for decomp parser (#376)
* Parser refactor:
- Handling LIRBARY and STRING markers
- Extracting global variable name for future comparison
- Marking function static variables
- More fluent error messages

* String constants annotated with STRING

* fix variable name

* Should compare LIBRARY markers
2023-12-27 15:59:42 -05:00

30 lines
636 B
C++

#ifndef MXLOOPINGFLCPRESENTER_H
#define MXLOOPINGFLCPRESENTER_H
#include "decomp.h"
#include "mxflcpresenter.h"
// VTABLE: LEGO1 0x100dc480
// SIZE 0x6c
class MxLoopingFlcPresenter : public MxFlcPresenter {
public:
MxLoopingFlcPresenter();
virtual ~MxLoopingFlcPresenter() override;
// FUNCTION: LEGO1 0x100b4380
inline virtual const char* ClassName() const override // vtable+0xc
{
// STRING: LEGO1 0x10101e20
return "MxLoopingFlcPresenter";
}
virtual void NextFrame() override; // vtable+0x64
private:
void Init();
void Destroy(MxBool p_fromDestructor);
undefined4 m_unk0x68;
};
#endif // MXLOOPINGFLCPRESENTER_H