2023-06-29 04:10:08 -04:00
|
|
|
#ifndef BUMPBOUY_H
|
|
|
|
#define BUMPBOUY_H
|
|
|
|
|
|
|
|
#include "legoanimactor.h"
|
|
|
|
#include "mxtypes.h"
|
|
|
|
|
2024-03-22 21:30:58 -04:00
|
|
|
/*
|
|
|
|
VTABLE: LEGO1 0x100d6790 LegoPathActor
|
|
|
|
VTABLE: LEGO1 0x100d6860 LegoAnimActor
|
|
|
|
*/
|
|
|
|
// SIZE 0x174
|
2023-10-24 19:38:27 -04:00
|
|
|
class BumpBouy : public LegoAnimActor {
|
2023-06-29 04:10:08 -04:00
|
|
|
public:
|
2024-03-22 21:30:58 -04:00
|
|
|
BumpBouy();
|
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 0x100274e0
|
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 0x100f0394
|
2023-10-24 19:38:27 -04:00
|
|
|
return "BumpBouy";
|
|
|
|
}
|
2023-06-29 04:10:08 -04:00
|
|
|
|
2023-12-06 07:10:45 -05:00
|
|
|
// FUNCTION: LEGO1 0x10027500
|
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, BumpBouy::ClassName()) || LegoAnimActor::IsA(p_name);
|
2023-10-24 19:38:27 -04:00
|
|
|
}
|
2024-01-18 08:34:14 -05:00
|
|
|
|
2024-02-01 15:42:10 -05:00
|
|
|
void ParseAction(char*) override; // vtable+0x20
|
|
|
|
void SetWorldSpeed(MxFloat p_worldSpeed) override; // vtable+0x30
|
|
|
|
void VTable0x70(float p_float) override; // vtable+0x70
|
|
|
|
void VTable0x74(Matrix4& p_transform) override; // vtable+0x74
|
2024-01-20 18:04:46 -05:00
|
|
|
|
2024-01-18 08:34:14 -05:00
|
|
|
// SYNTHETIC: LEGO1 0x10027490
|
|
|
|
// BumpBouy::`scalar deleting destructor'
|
2023-06-29 04:10:08 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // BUMPBOUY_H
|