isle/LEGO1/mxtimer.h

33 lines
522 B
C
Raw Normal View History

2023-04-27 22:19:39 -04:00
#ifndef MXTIMER_H
#define MXTIMER_H
#include "mxcore.h"
// VTABLE 0x100dc0e0
// SIZE 0x10
2023-10-24 19:38:27 -04:00
class MxTimer : public MxCore {
2023-04-27 22:19:39 -04:00
public:
2023-10-24 19:38:27 -04:00
MxTimer();
2023-10-24 19:38:27 -04:00
void Start();
void Stop();
2023-10-24 19:38:27 -04:00
__declspec(dllexport) MxLong GetRealTime();
2023-10-24 19:38:27 -04:00
inline MxLong GetTime()
{
if (this->m_isRunning)
return s_LastTimeTimerStarted;
else
return s_LastTimeCalculated - this->m_startTime;
}
private:
2023-10-24 19:38:27 -04:00
MxLong m_startTime;
MxBool m_isRunning;
static MxLong s_LastTimeCalculated;
static MxLong s_LastTimeTimerStarted;
2023-04-27 22:19:39 -04:00
};
#endif // MXTIMER_H