raze/source/exhumed/src/timer.cpp
nukeykt 50349a6b3d wip
# Conflicts:
#	platform/Windows/exhumed.vcxproj
#	platform/Windows/exhumed.vcxproj.filters
#	source/build/include/build.h
#	source/build/src/palette.cpp
2019-11-21 22:59:33 +01:00

16 lines
210 B
C++

#include "compat.h"
#include "baselayer.h"
#include "timer.h"
#include "exhumed.h"
void timerhandler();
void InitTimer()
{
htimer = 1;
timerInit(kTimerTicks);
timerSetCallback(timerhandler);
}