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

36 lines
660 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* ClassName() const // vtable+0xc
{
// 0x100f0070
return "MxEntity";
};
// OFFSET: LEGO1 0x1000c190
inline virtual MxBool IsA(const char *name) const // vtable+0x10
{
return !strcmp(name, MxEntity::ClassName()) || MxCore::IsA(name);
};
virtual undefined4 VTable0x14(undefined4 param_1, MxAtomId* param_2); // vtable+0x14
// VTABLE 0x100d53a4
// 0x8: MxResult
// 0xc MxAtomId
};
#endif // MXENTITY_H