mirror of
https://gitea.wildfiregames.com/0ad/0ad
synced 2026-07-08 07:55:47 -07:00
10 lines
160 B
C
10 lines
160 B
C
|
|
class HighResTimer
|
||
|
|
{
|
||
|
|
public:
|
||
|
|
HighResTimer();
|
||
|
|
double GetTime(); // in seconds, relative to some arbitrary time
|
||
|
|
|
||
|
|
private:
|
||
|
|
wxLongLong m_TickLength;
|
||
|
|
};
|