mirror of
https://github.com/vcmi/vcmi.git
synced 2024-11-30 08:57:00 +02:00
18 lines
374 B
C++
18 lines
374 B
C++
#ifndef __TIMEHANDLER_H__
|
|
#define __TIMEHANDLER_H__
|
|
|
|
#include <ctime>
|
|
class timeHandler
|
|
{
|
|
public:
|
|
clock_t start, last, mem;
|
|
timeHandler():start(clock()){last=clock();mem=0;};
|
|
long getDif(){long ret=clock()-last;last=clock();return ret;};
|
|
void update(){last=clock();};
|
|
void remember(){mem=clock();};
|
|
long memDif(){return mem-clock();};
|
|
};
|
|
|
|
|
|
#endif // __TIMEHANDLER_H__
|