reorganized repo, implemented mxcore

This commit is contained in:
itsmattkc
2023-05-05 02:54:17 -07:00
parent 1690784a8b
commit d4e2fb8d8a
54 changed files with 958 additions and 243 deletions

23
LEGO1/mxcore.h Normal file
View File

@@ -0,0 +1,23 @@
#ifndef MXCORE_H
#define MXCORE_H
#include "mxbool.h"
class MxParam;
class MxCore
{
public:
__declspec(dllexport) MxCore();
__declspec(dllexport) virtual ~MxCore();
__declspec(dllexport) virtual long Notify(MxParam &p);
virtual long FUN_10001f70();
virtual const char *GetClassName() const;
virtual MxBool IsClass(const char *name) const;
private:
unsigned int m_id;
};
#endif // MXCORE_H