hyperkaos/Timer.h

8 lines
107 B
C
Raw Normal View History

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