mirror of
https://github.com/isledecomp/isle-portable.git
synced 2024-11-23 07:58:21 -05:00
23 lines
502 B
C++
23 lines
502 B
C++
#ifndef LEGOJETSKI_H
|
|
#define LEGOJETSKI_H
|
|
|
|
#include "legojetskiraceactor.h"
|
|
|
|
// VTABLE 0x100d5a40
|
|
class LegoJetski : public LegoJetskiRaceActor {
|
|
public:
|
|
// OFFSET: LEGO1 0x10013e80
|
|
inline const char* ClassName() const override // vtable+0xc
|
|
{
|
|
// 0x100f053c
|
|
return "LegoJetski";
|
|
}
|
|
|
|
// OFFSET: LEGO1 0x10013ea0
|
|
inline MxBool IsA(const char* name) const override // vtable+0x10
|
|
{
|
|
return !strcmp(name, LegoJetski::ClassName()) || LegoJetskiRaceActor::IsA(name);
|
|
}
|
|
};
|
|
|
|
#endif // LEGOJETSKI_H
|