isle/LEGO1/pizza.h
Joshua Peisach b9dd956d5b Pizza: Add/update functions as according to MxCore inheritance
IsleActor::Notify needs to be stubbed
---------

Co-authored-by: Kai Kaufman <ktkaufman@wpi.edu>
2023-07-07 20:46:03 -04:00

43 lines
857 B
C++

#ifndef PIZZA_H
#define PIZZA_H
#include "decomp.h"
#include "isleactor.h"
#include "mxcore.h"
#include "mxtypes.h"
// VTABLE 0x100d7380
// SIZE 0x9c
class Pizza : public IsleActor
{
public:
Pizza();
virtual ~Pizza() override;
// TODO: IsleActor::Notify
// virtual MxS32 IsleActor::Notify(MxParam *) override; // vtable+04
virtual MxResult Tickle() override; // vtable+08
// OFFSET: LEGO1 0x10037f90
inline const char *ClassName() const //vtable+0c
{
// 0x100f038c
return "Pizza";
}
// OFFSET: LEGO1 0x10037fa0
inline MxBool Pizza::IsA(const char *name) const override //vtable+10
{
return !strcmp(name, Pizza::ClassName()) || IsleActor::IsA(name);
}
private:
undefined4 m_unk80;
undefined4 m_unk84;
undefined4 m_unk88;
undefined4 m_unk8c;
undefined4 m_unk90;
undefined4 m_unk98;
};
#endif // PIZZA_H