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

29 lines
546 B
C++

#ifndef SCORESTATE_H
#define SCORESTATE_H
#include "legostate.h"
class ScoreState : public LegoState
{
public:
// OFFSET: LEGO1 0x1000de40
inline virtual const char *ClassName() const // vtable+0x0c
{
// 0x100f0084
return "ScoreState";
};
// OFFSET: LEGO1 0x1000de50
inline virtual MxBool IsA(const char *name) const // vtable+0x10
{
return !strcmp(name, ScoreState::ClassName()) || LegoState::IsA(name);
};
virtual MxBool VTable0x14();
virtual MxBool VTable0x18();
// SIZE 0xc
};
#endif // SCORESTATE_H