isle-portable/LEGO1/pizzeriastate.h

27 lines
539 B
C
Raw Normal View History

#ifndef PIZZERIASTATE_H
#define PIZZERIASTATE_H
#include "legostate.h"
// VTABLE 0x100d5ee8
// SIZE 0xb4
2023-10-24 19:38:27 -04:00
class PizzeriaState : public LegoState {
public:
2023-10-24 19:38:27 -04:00
PizzeriaState();
// OFFSET: LEGO1 0x10017c20
inline virtual const char* ClassName() const override // vtable+0x0c
{
// 0x100f0370
return "PizzeriaState";
}
// OFFSET: LEGO1 0x10017c30
inline virtual MxBool IsA(const char* name) const override // vtable+0x10
{
return !strcmp(name, PizzeriaState::ClassName()) || LegoState::IsA(name);
}
};
#endif // PIZZERIASTATE_H