2023-04-27 22:19:39 -04:00
|
|
|
#ifndef LEGOANIMATIONMANAGER_H
|
|
|
|
#define LEGOANIMATIONMANAGER_H
|
|
|
|
|
2024-01-12 17:27:07 -05:00
|
|
|
#include "decomp.h"
|
2023-06-29 04:10:08 -04:00
|
|
|
#include "mxcore.h"
|
|
|
|
|
2023-12-06 07:10:45 -05:00
|
|
|
// VTABLE: LEGO1 0x100d8c18
|
2023-06-29 04:10:08 -04:00
|
|
|
// SIZE 0x500
|
2023-10-24 19:38:27 -04:00
|
|
|
class LegoAnimationManager : public MxCore {
|
2023-04-27 22:19:39 -04:00
|
|
|
public:
|
2023-10-24 19:38:27 -04:00
|
|
|
LegoAnimationManager();
|
|
|
|
virtual ~LegoAnimationManager() override; // vtable+0x0
|
2023-06-29 04:10:08 -04:00
|
|
|
|
2023-12-13 05:48:14 -05:00
|
|
|
virtual MxLong Notify(MxParam& p_param) override; // vtable+0x4
|
|
|
|
virtual MxResult Tickle() override; // vtable+0x8
|
2023-06-29 04:10:08 -04:00
|
|
|
|
2023-12-06 07:10:45 -05:00
|
|
|
// FUNCTION: LEGO1 0x1005ec80
|
2023-10-24 19:38:27 -04:00
|
|
|
inline virtual const char* ClassName() const override // vtable+0x0c
|
|
|
|
{
|
2023-12-27 15:59:42 -05:00
|
|
|
// STRING: LEGO1 0x100f7508
|
2023-10-24 19:38:27 -04:00
|
|
|
return "LegoAnimationManager";
|
|
|
|
}
|
2023-06-29 04:10:08 -04:00
|
|
|
|
2023-12-06 07:10:45 -05:00
|
|
|
// FUNCTION: LEGO1 0x1005ec90
|
2023-12-13 05:48:14 -05:00
|
|
|
inline virtual MxBool IsA(const char* p_name) const override // vtable+0x10
|
2023-10-24 19:38:27 -04:00
|
|
|
{
|
2023-12-13 05:48:14 -05:00
|
|
|
return !strcmp(p_name, ClassName()) || MxCore::IsA(p_name);
|
2023-10-24 19:38:27 -04:00
|
|
|
}
|
2023-06-29 04:10:08 -04:00
|
|
|
|
2024-01-13 15:42:09 -05:00
|
|
|
void FUN_1005ef10();
|
2023-12-13 05:48:14 -05:00
|
|
|
void FUN_1005f6d0(MxBool);
|
2024-01-12 17:27:07 -05:00
|
|
|
void FUN_1005f720(undefined4);
|
2023-12-14 11:50:29 -05:00
|
|
|
void FUN_10064670(MxBool);
|
2023-10-24 08:37:02 -04:00
|
|
|
|
2023-12-13 05:48:14 -05:00
|
|
|
__declspec(dllexport) static void configureLegoAnimationManager(MxS32 p_legoAnimationManagerConfig);
|
2023-06-29 04:10:08 -04:00
|
|
|
|
2023-10-24 19:38:27 -04:00
|
|
|
private:
|
|
|
|
void Init();
|
2023-04-27 22:19:39 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // LEGOANIMATIONMANAGER_H
|