mirror of
https://github.com/isledecomp/isle.git
synced 2026-01-12 19:21:15 +00:00
24 lines
451 B
C++
24 lines
451 B
C++
#ifndef MXENTITY_H
|
|
#define MXENTITY_H
|
|
|
|
#include "mxcore.h"
|
|
|
|
#ifndef undefined4
|
|
#define undefined4 int
|
|
#endif
|
|
|
|
class MxAtomId;
|
|
|
|
class MxEntity : public MxCore
|
|
{
|
|
public:
|
|
virtual const char* GetClassName() const; // vtable+0xc
|
|
virtual MxBool IsClass(const char *name) const; // vtable+0x10
|
|
|
|
virtual undefined4 VTable0x14(undefined4 param_1, MxAtomId* param_2); // vtable+0x14
|
|
|
|
// VTABLE 0x100d53a4
|
|
};
|
|
|
|
#endif // MXENTITY_H
|