hyperkaos/Timer.h

8 lines
109 B
C
Raw Normal View History

typedef struct timer
{
int startTicks;
} Timer;
void timeStart(Timer* self);
int getTicks(Timer* self);