mirror of
https://github.com/isledecomp/isle.git
synced 2026-01-13 19:51:16 +00:00
26 lines
564 B
C++
26 lines
564 B
C++
#ifndef PIZZAMISSIONSTATE_H
|
|
#define PIZZAMISSIONSTATE_H
|
|
|
|
#include "legostate.h"
|
|
|
|
class PizzaMissionState : public LegoState
|
|
{
|
|
public:
|
|
// OFFSET: LEGO1 0x10039290
|
|
inline virtual const char *ClassName() const // vtable+0x0c
|
|
{
|
|
// 0x100f00d4
|
|
return "PizzaMissionState";
|
|
};
|
|
|
|
// OFFSET: LEGO1 0x100392a0
|
|
inline virtual MxBool IsA(const char *name) const // vtable+0x10
|
|
{
|
|
return !strcmp(name, PizzaMissionState::ClassName()) || LegoState::IsA(name);
|
|
};
|
|
|
|
virtual undefined4 VTable0x1c(undefinedPtr param);
|
|
};
|
|
|
|
#endif // PIZZAMISSIONSTATE_H
|