mirror of
https://github.com/isledecomp/isle-portable.git
synced 2024-11-26 17:36:12 -05:00
36 lines
411 B
C++
36 lines
411 B
C++
|
#include "mxcore.h"
|
||
|
|
||
|
#include <string.h>
|
||
|
|
||
|
unsigned int g_mxcoreCount = 0;
|
||
|
|
||
|
MxCore::MxCore()
|
||
|
{
|
||
|
m_id = g_mxcoreCount;
|
||
|
g_mxcoreCount++;
|
||
|
}
|
||
|
|
||
|
MxCore::~MxCore()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
long MxCore::Notify(MxParam &p)
|
||
|
{
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
long MxCore::FUN_10001f70()
|
||
|
{
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
const char *MxCore::GetClassName() const
|
||
|
{
|
||
|
return "MxCore";
|
||
|
}
|
||
|
|
||
|
MxBool MxCore::IsClass(const char *name) const
|
||
|
{
|
||
|
return strcmp(name, "MxCore") == 0;
|
||
|
}
|