mirror of
https://github.com/isledecomp/isle-portable.git
synced 2024-11-22 15:37:55 -05:00
4a50a9ff56
* MxNotificationManager initial work. * Add .swp files to .gitignore. * Checkpoint before anything too crazy with param * Cleanup and add MxParam. * Checkpoint for everything except MxNotificationManager::Register. * Add int return type to MxCore::GetId instead of relying on implicit function nonsense. * Add stlcompat.h so this can still be built on modern compilers, fix affected type size asserts. * Switch to Mx types * Add BUILD_COMPAT option to CMake so the project can still be built with modern compilers. * Change vtable14 and vtable18 to Register and Unregister in MxTickleManager. * Remove last unsigned int reference to id type. * Remove MxList, use one inherited class per type. Improves accuracy again. * Address compiler compatibility code review. * Match MxNotificationManager::Register. * Re-enable MxNotificationManager DECOMP_SIZE_ASSERT.
21 lines
500 B
C++
21 lines
500 B
C++
#ifndef MXTICKLEMANAGER_H
|
|
#define MXTICKLEMANAGER_H
|
|
|
|
#include "mxcore.h"
|
|
|
|
// VTABLE 0x100d86d8
|
|
class MxTickleManager : public MxCore
|
|
{
|
|
public:
|
|
virtual ~MxTickleManager();
|
|
|
|
virtual MxLong Tickle();
|
|
virtual const char *ClassName() const;
|
|
virtual MxBool IsA(const char *name) const;
|
|
virtual void Register(MxCore *p_listener, int p_milliseconds);
|
|
virtual void Unregister(MxCore *p_listener);
|
|
virtual void vtable1c(void *v, int p);
|
|
virtual void vtable20();
|
|
};
|
|
|
|
#endif // MXTICKLEMANAGER_H
|