forked from mirrors/0ad
3d26549032
This was SVN commit r3802.
10 lines
151 B
C++
10 lines
151 B
C++
class HighResTimer
|
|
{
|
|
public:
|
|
HighResTimer();
|
|
double GetTime(); // in seconds, relative to some arbitrary time
|
|
|
|
private:
|
|
wxLongLong m_TickLength;
|
|
};
|