katbug/Timer.h

8 lines
109 B
C
Raw Normal View History

2019-02-04 21:24:24 +00:00
typedef struct timer
{
int startTicks;
} Timer;
void timeStart(Timer* self);
int getTicks(Timer* self);