1
0
Fork 0
mirror of https://github.com/isledecomp/isle.git synced 2025-05-17 08:11:52 -04:00
isle/LEGO1/mxcore.cpp

28 lines
360 B
C++
Raw Normal View History

2023-05-05 02:54:17 -07:00
#include "mxcore.h"
2023-06-18 20:56:55 -07:00
// 0x1010141c
2023-05-05 02:54:17 -07:00
unsigned int g_mxcoreCount = 0;
2023-06-18 20:56:55 -07:00
// OFFSET: LEGO1 0x100ae1a0
2023-05-05 02:54:17 -07:00
MxCore::MxCore()
{
m_id = g_mxcoreCount;
g_mxcoreCount++;
}
2023-06-18 20:56:55 -07:00
// OFFSET: LEGO1 0x100ae1e0
2023-05-05 02:54:17 -07:00
MxCore::~MxCore()
{
}
2023-06-18 20:56:55 -07:00
// OFFSET: LEGO1 0x100ae1f0
MxLong MxCore::Notify(MxParam &p)
2023-05-05 02:54:17 -07:00
{
return 0;
}
2023-06-18 20:56:55 -07:00
// OFFSET: LEGO1 0x10001f70
MxResult MxCore::Tickle()
2023-05-05 02:54:17 -07:00
{
return 0;
2023-06-26 03:34:13 +02:00
}