mirror of
https://github.com/isledecomp/isle.git
synced 2024-11-22 23:57:54 -05:00
26 lines
490 B
C
26 lines
490 B
C
|
#ifndef MXLOOPINGFLCPRESENTER_H
|
||
|
#define MXLOOPINGFLCPRESENTER_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";
|
||
|
}
|
||
|
|
||
|
private:
|
||
|
void Init();
|
||
|
};
|
||
|
|
||
|
#endif // MXLOOPINGFLCPRESENTER_H
|