mirror of
https://github.com/isledecomp/isle.git
synced 2026-01-12 19:21:15 +00:00
* Fix inline functions * Whitespace * Try this * Fix MxEntity * Further fixes * Move main out * Replace tickle code
22 lines
287 B
C++
22 lines
287 B
C++
#include "mxcore.h"
|
|
|
|
#include "define.h"
|
|
|
|
// FUNCTION: LEGO1 0x100ae1a0
|
|
MxCore::MxCore()
|
|
{
|
|
m_id = (MxU32) g_mxcoreCount[0];
|
|
g_mxcoreCount[0]++;
|
|
}
|
|
|
|
// FUNCTION: LEGO1 0x100ae1e0
|
|
MxCore::~MxCore()
|
|
{
|
|
}
|
|
|
|
// FUNCTION: LEGO1 0x100ae1f0
|
|
MxLong MxCore::Notify(MxParam& p_param)
|
|
{
|
|
return 0;
|
|
}
|