isle-portable/LEGO1/mxcore.cpp

36 lines
405 B
C++
Raw Normal View History

2023-05-05 05:54:17 -04:00
#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;
}
2023-05-22 00:45:25 -04:00
long MxCore::Tickle()
2023-05-05 05:54:17 -04:00
{
return 0;
}
const char *MxCore::GetClassName() const
{
return "MxCore";
}
MxBool MxCore::IsClass(const char *name) const
{
return strcmp(name, "MxCore") == 0;
}