mirror of
https://gitea.wildfiregames.com/0ad/0ad.git
synced 2026-07-09 19:34:09 +00:00
0b72d0f86c
This was SVN commit r2705.
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;
|
|
};
|