mirror of
https://github.com/spiffcode/hostile-takeover.git
synced 2026-03-27 15:29:39 -06:00
15 lines
234 B
C++
15 lines
234 B
C++
#ifndef __TICK_H__
|
|
#define __TICK_H__
|
|
|
|
#include "inc/basictypes.h"
|
|
|
|
namespace base {
|
|
|
|
extern long64 GetTickCount();
|
|
extern long64 GetMillisecondCount();
|
|
extern dword GetSecondsUnixEpocUTC();
|
|
|
|
} // namespace base
|
|
|
|
#endif // __TICK_H__
|