mirror of
https://github.com/isledecomp/isle-portable.git
synced 2024-11-23 07:58:21 -05:00
e7b5ea53df
Was intended as a simple code improvement, however it also seems to make WinMain, MxString::operator=, MxDSFile::Open 100% (all of which just needed registers to be switched around)
20 lines
419 B
C++
20 lines
419 B
C++
#ifndef MXTICKLEMANAGER_H
|
|
#define MXTICKLEMANAGER_H
|
|
|
|
#include "mxcore.h"
|
|
|
|
class MxTickleManager : public MxCore
|
|
{
|
|
public:
|
|
virtual ~MxTickleManager();
|
|
|
|
virtual long Tickle();
|
|
virtual const char *ClassName() const;
|
|
virtual MxBool IsA(const char *name) const;
|
|
virtual void vtable14();
|
|
virtual void vtable18();
|
|
virtual void vtable1c(void *v, int p);
|
|
virtual void vtable20();
|
|
};
|
|
|
|
#endif // MXTICKLEMANAGER_H
|