isle/LEGO1/mxentity.h

36 lines
674 B
C++

#ifndef MXENTITY_H
#define MXENTITY_H
#include "mxcore.h"
#ifndef undefined4
#define undefined4 int
#endif
class MxAtomId;
class MxEntity : public MxCore
{
public:
// OFFSET: LEGO1 0x1000c180
inline virtual const char* GetClassName() const // vtable+0xc
{
// 0x100f0070
return "MxEntity";
};
// OFFSET: LEGO1 0x1000c190
inline virtual MxBool IsClass(const char *name) const // vtable+0x10
{
return !strcmp(name, MxEntity::GetClassName()) || MxCore::IsClass(name);
};
virtual undefined4 VTable0x14(undefined4 param_1, MxAtomId* param_2); // vtable+0x14
// VTABLE 0x100d53a4
// 0x8: MxResult
// 0xc MxAtomId
};
#endif // MXENTITY_H