2023-06-29 04:10:08 -04:00
|
|
|
#ifndef LEGOPHONEMEPRESENTER_H
|
|
|
|
#define LEGOPHONEMEPRESENTER_H
|
|
|
|
|
2023-08-28 05:38:46 -04:00
|
|
|
#include "decomp.h"
|
2023-06-29 04:10:08 -04:00
|
|
|
#include "mxflcpresenter.h"
|
2023-08-28 05:38:46 -04:00
|
|
|
#include "mxstring.h"
|
|
|
|
#include "mxtypes.h"
|
2023-06-29 04:10:08 -04:00
|
|
|
|
2023-12-06 07:10:45 -05:00
|
|
|
// VTABLE: LEGO1 0x100d8040
|
2023-06-29 04:10:08 -04:00
|
|
|
// SIZE 0x88
|
2023-10-24 19:38:27 -04:00
|
|
|
class LegoPhonemePresenter : public MxFlcPresenter {
|
2023-06-29 04:10:08 -04:00
|
|
|
public:
|
2023-10-24 19:38:27 -04:00
|
|
|
LegoPhonemePresenter();
|
|
|
|
virtual ~LegoPhonemePresenter() override; // vtable+0x0
|
2023-06-29 04:10:08 -04:00
|
|
|
|
2023-12-06 07:10:45 -05:00
|
|
|
// FUNCTION: LEGO1 0x1004e310
|
2023-10-24 19:38:27 -04:00
|
|
|
inline const char* ClassName() const override // vtable+0xc
|
|
|
|
{
|
2023-12-27 15:59:42 -05:00
|
|
|
// STRING: LEGO1 0x100f064c
|
2023-10-24 19:38:27 -04:00
|
|
|
return "LegoPhonemePresenter";
|
|
|
|
}
|
2023-06-29 04:10:08 -04:00
|
|
|
|
|
|
|
private:
|
2023-10-24 19:38:27 -04:00
|
|
|
void Init();
|
2023-12-13 05:48:14 -05:00
|
|
|
int m_unk0x68;
|
|
|
|
int m_unk0x6c;
|
|
|
|
undefined m_unk0x70;
|
2023-10-24 19:38:27 -04:00
|
|
|
MxString m_string; // 0x74
|
2023-12-13 05:48:14 -05:00
|
|
|
undefined m_unk0x84;
|
2023-06-29 04:10:08 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // LEGOPHONEMEPRESENTER_H
|