mirror of
https://github.com/ZDoom/Raze.git
synced 2025-01-18 14:41:55 +00:00
50349a6b3d
# Conflicts: # platform/Windows/exhumed.vcxproj # platform/Windows/exhumed.vcxproj.filters # source/build/include/build.h # source/build/src/palette.cpp
16 lines
210 B
C++
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);
|
|
}
|
|
|