Fix MxEntity

This commit is contained in:
Christian Semmler 2024-01-11 09:11:52 -05:00
parent eb9998830a
commit 9756cc90ae
2 changed files with 2 additions and 7 deletions

View File

@ -11,7 +11,8 @@
// SIZE 0x10
class MxEntity : public MxCore {
public:
MxEntity();
// FUNCTION: LEGO1 0x1001d190
MxEntity() { this->m_mxEntityId = -1; }
// FUNCTION: LEGO1 0x1000c110
virtual ~MxEntity() override{};

View File

@ -1,9 +1,3 @@
#include "mxentity.h"
DECOMP_SIZE_ASSERT(MxEntity, 0x10)
// FUNCTION: LEGO1 0x1001d190
MxEntity::MxEntity()
{
this->m_mxEntityId = -1;
}