2023-06-29 04:10:08 -04:00
|
|
|
#ifndef HELICOPTER_H
|
|
|
|
#define HELICOPTER_H
|
|
|
|
|
2023-10-24 04:14:45 -04:00
|
|
|
#include "helicopterstate.h"
|
2023-06-29 04:10:08 -04:00
|
|
|
#include "islepathactor.h"
|
2023-10-24 04:14:45 -04:00
|
|
|
#include "mxmatrix.h"
|
2023-06-29 04:10:08 -04:00
|
|
|
|
|
|
|
// VTABLE 0x100d40f8
|
|
|
|
// SIZE 0x230
|
|
|
|
class Helicopter : public IslePathActor
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
Helicopter();
|
|
|
|
|
|
|
|
// OFFSET: LEGO1 0x10003070
|
|
|
|
inline virtual const char *ClassName() const override // vtable+0x0c
|
|
|
|
{
|
|
|
|
// 0x100f0130
|
|
|
|
return "Helicopter";
|
|
|
|
}
|
|
|
|
|
|
|
|
// OFFSET: LEGO1 0x10003080
|
|
|
|
inline virtual MxBool IsA(const char *name) const override // vtable+0x10
|
|
|
|
{
|
|
|
|
return !strcmp(name, Helicopter::ClassName()) || IslePathActor::IsA(name);
|
|
|
|
}
|
|
|
|
|
2023-10-24 04:14:45 -04:00
|
|
|
virtual MxResult InitFromMxDSObject(MxDSObject &p_dsObject) override; // vtable+0x18
|
|
|
|
|
|
|
|
// OFFSET: LEGO1 0x10003210 TEMPLATE
|
|
|
|
// Helicopter::`scalar deleting destructor'
|
|
|
|
virtual ~Helicopter() override; // vtable+0x0
|
|
|
|
|
|
|
|
protected:
|
|
|
|
MxMatrixData m_unk160;
|
|
|
|
MxMatrixData m_unk1a8;
|
|
|
|
undefined4 m_unk1f0;
|
|
|
|
MxVector4Data m_unk1f4;
|
|
|
|
MxVector4Data m_unk20c;
|
|
|
|
undefined4 m_unk224;
|
|
|
|
HelicopterState *m_state;
|
|
|
|
MxAtomId m_unk22c;
|
|
|
|
|
|
|
|
private:
|
|
|
|
void GetState();
|
2023-06-29 04:10:08 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // HELICOPTER_H
|