mirror of
https://github.com/isledecomp/isle.git
synced 2026-01-12 03:01:17 +00:00
36 lines
660 B
C++
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
|