isle-portable/LEGO1/legojetski.h

24 lines
502 B
C
Raw Normal View History

#ifndef LEGOJETSKI_H
#define LEGOJETSKI_H
#include "legojetskiraceactor.h"
// VTABLE 0x100d5a40
2023-10-24 19:38:27 -04:00
class LegoJetski : public LegoJetskiRaceActor {
public:
2023-10-24 19:38:27 -04:00
// OFFSET: LEGO1 0x10013e80
inline const char* ClassName() const override // vtable+0xc
{
// 0x100f053c
return "LegoJetski";
}
2023-10-24 19:38:27 -04:00
// OFFSET: LEGO1 0x10013ea0
inline MxBool IsA(const char* name) const override // vtable+0x10
{
return !strcmp(name, LegoJetski::ClassName()) || LegoJetskiRaceActor::IsA(name);
}
};
#endif // LEGOJETSKI_H