mirror of
https://github.com/isledecomp/isle.git
synced 2026-01-12 03:01:17 +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.
19 lines
542 B
C++
19 lines
542 B
C++
#ifndef MXPRESENTER_H
|
|
#define MXPRESENTER_H
|
|
|
|
class MxPresenter
|
|
{
|
|
protected:
|
|
__declspec(dllexport) virtual void DoneTickle();
|
|
__declspec(dllexport) void Init();
|
|
__declspec(dllexport) virtual void ParseExtra();
|
|
public:
|
|
__declspec(dllexport) virtual ~MxPresenter();
|
|
__declspec(dllexport) virtual void Enable(unsigned char);
|
|
__declspec(dllexport) virtual void EndAction();
|
|
__declspec(dllexport) virtual long StartAction(MxStreamController *, MxDSAction *);
|
|
__declspec(dllexport) virtual long Tickle();
|
|
};
|
|
|
|
#endif // MXPRESENTER_H
|