mirror of
https://github.com/isledecomp/isle.git
synced 2026-01-12 11:11:16 +00:00
31 lines
622 B
C++
31 lines
622 B
C++
#ifndef INFOCENTERSTATE_H
|
|
#define INFOCENTERSTATE_H
|
|
|
|
#include "legostate.h"
|
|
|
|
class InfoCenterState : public LegoState
|
|
{
|
|
public:
|
|
InfoCenterState();
|
|
virtual ~InfoCenterState();
|
|
|
|
// OFFSET: LEGO1 0x10071840
|
|
inline virtual const char *ClassName() const // vtable+0x0c
|
|
{
|
|
// 0x100f04dc
|
|
return "InfoCenterState";
|
|
};
|
|
|
|
// OFFSET: LEGO1 0x10071850
|
|
inline virtual MxBool IsA(const char *name) const // vtable+0x10
|
|
{
|
|
return !strcmp(name, InfoCenterState::ClassName()) || LegoState::IsA(name);
|
|
};
|
|
|
|
virtual MxBool VTable0x14();
|
|
|
|
// VTABLE 0x100d93a8
|
|
// SIZE 0x94
|
|
};
|
|
|
|
#endif // INFOCENTERSTATE_H
|