isle-portable/LEGO1/mxcore.cpp

28 lines
343 B
C++
Raw Normal View History

2023-05-05 05:54:17 -04:00
#include "mxcore.h"
#include "define.h"
2023-05-05 05:54:17 -04:00
2023-06-18 23:56:55 -04:00
// OFFSET: LEGO1 0x100ae1a0
2023-05-05 05:54:17 -04:00
MxCore::MxCore()
{
m_id = g_mxcoreCount[0];
g_mxcoreCount[0]++;
2023-05-05 05:54:17 -04:00
}
2023-06-18 23:56:55 -04:00
// OFFSET: LEGO1 0x100ae1e0
2023-05-05 05:54:17 -04:00
MxCore::~MxCore()
{
}
2023-06-18 23:56:55 -04:00
// OFFSET: LEGO1 0x100ae1f0
2023-10-24 19:38:27 -04:00
MxLong MxCore::Notify(MxParam& p)
2023-05-05 05:54:17 -04:00
{
2023-10-24 19:38:27 -04:00
return 0;
2023-05-05 05:54:17 -04:00
}
2023-06-18 23:56:55 -04:00
// OFFSET: LEGO1 0x10001f70
MxResult MxCore::Tickle()
2023-05-05 05:54:17 -04:00
{
2023-10-24 19:38:27 -04:00
return SUCCESS;
}