1
0
mirror of https://github.com/vcmi/vcmi.git synced 2024-11-24 08:32:34 +02:00
vcmi/timeHandler.h
2008-06-14 10:20:18 +00:00

16 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