mirror of
https://github.com/isledecomp/isle.git
synced 2025-10-23 16:34:06 +00:00
reorganized repo, implemented mxcore
This commit is contained in:
35
LEGO1/mxcore.cpp
Normal file
35
LEGO1/mxcore.cpp
Normal file
@@ -0,0 +1,35 @@
|
||||
#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;
|
||||
}
|
Reference in New Issue
Block a user