8 lines
107 B
C
8 lines
107 B
C
|
typedef struct timer
|
||
|
{
|
||
|
int startTicks;
|
||
|
|
||
|
} Timer;
|
||
|
|
||
|
void timeStart(Timer self);
|
||
|
int getTicks(Timer self);
|