mirror of
https://github.com/isledecomp/isle-portable.git
synced 2024-11-23 07:58:21 -05:00
d2b05a0983
* LegoFlcTexturePresenter init function say that 5 times fast * Fixes --------- Co-authored-by: Christian Semmler <mail@csemmler.com>
27 lines
543 B
C++
27 lines
543 B
C++
#ifndef LEGOFLCTEXTUREPRESENTER_H
|
|
#define LEGOFLCTEXTUREPRESENTER_H
|
|
|
|
#include "decomp.h"
|
|
#include "mxflcpresenter.h"
|
|
|
|
// VTABLE: LEGO1 0x100d89e0
|
|
// SIZE 0x70
|
|
class LegoFlcTexturePresenter : public MxFlcPresenter {
|
|
public:
|
|
LegoFlcTexturePresenter();
|
|
|
|
// FUNCTION: LEGO1 0x1005def0
|
|
inline const char* ClassName() const override // vtable+0xc
|
|
{
|
|
// GLOBAL: LEGO1 0x100f0634
|
|
return "LegoFlcTexturePresenter";
|
|
}
|
|
|
|
private:
|
|
void Init();
|
|
|
|
undefined4 m_unk0x68; // 0x68
|
|
undefined4 m_unk0x6c; // 0x6c
|
|
};
|
|
|
|
#endif // LEGOFLCTEXTUREPRESENTER_H
|