2023-06-29 04:10:08 -04:00
|
|
|
#ifndef ISLEACTOR_H
|
|
|
|
#define ISLEACTOR_H
|
|
|
|
|
|
|
|
#include "legoactor.h"
|
2024-05-03 12:19:12 -04:00
|
|
|
|
|
|
|
class LegoWorld;
|
|
|
|
class MxEndActionNotificationParam;
|
|
|
|
class MxNotificationParam;
|
2023-06-29 04:10:08 -04:00
|
|
|
|
2023-12-06 07:10:45 -05:00
|
|
|
// VTABLE: LEGO1 0x100d5178
|
2024-04-11 07:55:22 -04:00
|
|
|
// SIZE 0x7c
|
2023-10-24 19:38:27 -04:00
|
|
|
class IsleActor : public LegoActor {
|
2023-06-29 04:10:08 -04:00
|
|
|
public:
|
2024-02-01 15:42:10 -05:00
|
|
|
MxLong Notify(MxParam& p_param) override; // vtable+0x04
|
2024-01-20 18:04:46 -05:00
|
|
|
|
2023-12-06 07:10:45 -05:00
|
|
|
// FUNCTION: LEGO1 0x1000e660
|
2024-02-01 15:42:10 -05:00
|
|
|
inline const char* ClassName() const override // vtable+0x0c
|
2023-10-24 19:38:27 -04:00
|
|
|
{
|
2023-12-27 15:59:42 -05:00
|
|
|
// STRING: LEGO1 0x100f07dc
|
2023-10-24 19:38:27 -04:00
|
|
|
return "IsleActor";
|
|
|
|
}
|
2023-06-29 04:10:08 -04:00
|
|
|
|
2023-12-06 07:10:45 -05:00
|
|
|
// FUNCTION: LEGO1 0x1000e670
|
2024-02-01 15:42:10 -05:00
|
|
|
inline 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, IsleActor::ClassName()) || LegoActor::IsA(p_name);
|
2023-10-24 19:38:27 -04:00
|
|
|
}
|
2024-01-20 18:04:46 -05:00
|
|
|
|
2024-02-01 15:42:10 -05:00
|
|
|
MxResult Create(MxDSAction& p_dsAction) override; // vtable+0x18
|
2024-04-11 07:55:22 -04:00
|
|
|
|
|
|
|
// FUNCTION: LEGO1 0x1000e5f0
|
2024-05-30 09:54:24 -04:00
|
|
|
virtual undefined4 HandleClick() { return 0; } // vtable+0x68
|
2024-04-11 07:55:22 -04:00
|
|
|
|
|
|
|
// FUNCTION: LEGO1 0x1000e600
|
|
|
|
virtual undefined4 VTable0x6c() { return 0; } // vtable+0x6c
|
|
|
|
|
|
|
|
// FUNCTION: LEGO1 0x1000e610
|
|
|
|
virtual undefined4 VTable0x70() { return 0; } // vtable+0x70
|
|
|
|
|
|
|
|
// FUNCTION: LEGO1 0x1000e620
|
|
|
|
virtual undefined4 HandleEndAction(MxEndActionNotificationParam&) { return 0; } // vtable+0x74
|
|
|
|
|
|
|
|
// FUNCTION: LEGO1 0x1000e630
|
|
|
|
virtual undefined4 HandleButtonDown(MxNotificationParam&) { return 0; } // vtable+0x78
|
|
|
|
|
|
|
|
// FUNCTION: LEGO1 0x1000e640
|
|
|
|
virtual undefined4 HandleButtonUp(MxNotificationParam&) { return 0; } // vtable+0x7c
|
|
|
|
|
|
|
|
// FUNCTION: LEGO1 0x1000e650
|
|
|
|
virtual undefined4 VTable0x80(MxParam&) { return 0; } // vtable+0x80
|
|
|
|
|
2024-05-24 14:44:09 -04:00
|
|
|
protected:
|
2024-04-11 07:55:22 -04:00
|
|
|
LegoWorld* m_world; // 0x78
|
2023-06-29 04:10:08 -04:00
|
|
|
};
|
|
|
|
|
2024-01-14 16:28:46 -05:00
|
|
|
// SYNTHETIC: LEGO1 0x1000e940
|
|
|
|
// IsleActor::~IsleActor
|
|
|
|
|
|
|
|
// SYNTHETIC: LEGO1 0x1000e990
|
|
|
|
// IsleActor::`scalar deleting destructor'
|
|
|
|
|
2023-06-29 04:10:08 -04:00
|
|
|
#endif // ISLEACTOR_H
|