isle/LEGO1/gasstationstate.h
itsmattkc 73a9013a3b rename GetClassName/IsClass
Mirroring recent changes from master
2023-06-27 19:15:56 -07:00

32 lines
670 B
C++

#ifndef GASSTATIONSTATE_H
#define GASSTATIONSTATE_H
#include "legostate.h"
class GasStationState : public LegoState
{
public:
GasStationState();
// OFFSET: LEGO1 0x100061d0
inline virtual const char *ClassName() const // vtable+0x0c
{
// 0x100f0174
return "GasStationState";
};
// OFFSET: LEGO1 0x100061e0
inline virtual MxBool IsA(const char *name) const // vtable+0x10
{
return !strcmp(name, GasStationState::ClassName()) || LegoState::IsA(name);
};
virtual undefined4 VTable0x1c(undefined4 param);
// field 0x8 is prob MxResult
// field 0xc is prob MxResult
// field 0x10 is prob MxResult
};
#endif // GASSTATIONSTATE_H