isle/LEGO1/mxentity.cpp
Cydra 068e37040a Created a bunch more classes and added more information to exisiting ones
Did not error check, this was pushed just for reference
2023-06-21 14:24:59 +02:00

19 lines
334 B
C++

#include "mxentity.h"
// OFFSET: LEGO1 0x100f0070
static char* g_mxEntityClassName = "MxEntity";
// OFFSET: LEGO1 0x1000c180
const char *MxEntity::GetClassName() const
{
return g_mxEntityClassName;
}
// OFFSET: LEG01 0x1000c190
MxBool MxEntity::IsClass(const char *name) const
{
// TODO
return MxBool();
}