mirror of
https://github.com/ZDoom/Raze.git
synced 2025-01-11 03:20:47 +00:00
16 lines
278 B
C
16 lines
278 B
C
#pragma once
|
|
|
|
#ifndef timer_h__
|
|
#define timer_h__
|
|
|
|
#include "compat.h"
|
|
|
|
// for compatibility
|
|
#define timerUninit()
|
|
|
|
int timerInit(int const tickspersecond);
|
|
void timerUpdateClock(void);
|
|
double timerGetHiTicks(void);
|
|
uint32_t timerGetTicks(void);
|
|
|
|
#endif // timer_h__
|