Codechange: Define a TickCounter variable type for TimerGameTick::counter

This commit is contained in:
Tyler Trahan
2023-11-20 12:00:34 -05:00
parent bc1d49ebf4
commit 3902acb13d
3 changed files with 4 additions and 3 deletions

View File

@@ -16,7 +16,7 @@
#include "../safeguards.h"
uint64_t TimerGameTick::counter = 0;
TimerGameTick::TickCounter TimerGameTick::counter = 0;
template<>
void IntervalTimer<TimerGameTick>::Elapsed(TimerGameTick::TElapsed delta)