isle/LEGO1/legocameracontroller.h

28 lines
614 B
C
Raw Normal View History

#ifndef LEGOCAMERACONTROLLER_H
#define LEGOCAMERACONTROLLER_H
#include "mxcore.h"
// VTABLE 0x100d57b0
// SIZE 0xc8
2023-10-24 19:38:27 -04:00
class LegoCameraController : public MxCore {
public:
2023-10-24 19:38:27 -04:00
LegoCameraController();
virtual ~LegoCameraController() override; // vtable+0x0
2023-10-24 19:38:27 -04:00
// OFFSET: LEGO1 0x10011ec0
inline virtual const char* ClassName() const override // vtable+0x0c
{
// 0x100f0850
return "LegoCameraController";
}
2023-10-24 19:38:27 -04:00
// OFFSET: LEGO1 0x10011ed0
inline virtual MxBool IsA(const char* name) const override // vtable+0x10
{
return !strcmp(name, ClassName()) || MxCore::IsA(name);
}
};
#endif // LEGOCAMERACONTROLLER_H