mirror of
https://github.com/isledecomp/isle.git
synced 2026-01-14 04:01:15 +00:00
I haven't yet:
- Ensured CMake is generating the same cl flags as Developer Studio (ditto..)
The old IDE makefiles are left in attic/ if anyone wants to try matching flags
Source structure has been slightly modified:
Uppercase directories moved to lowercase
isle/res -> isle/src/res (I'm a bit dubious of this myself but eh)
isle/*.{cpp, h} -> isle/src
lego1/*.h -> lego1/include
lego1/*.cpp -> lego1/src
All mixed/upper includes have additionally been changed to lowercase,
for compatibility with building on both Windows and Linux.
24 lines
403 B
C++
24 lines
403 B
C++
#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 Tickle();
|
|
virtual const char *GetClassName() const;
|
|
virtual MxBool IsClass(const char *name) const;
|
|
|
|
private:
|
|
unsigned int m_id;
|
|
|
|
};
|
|
|
|
#endif // MXCORE_H
|