all repos — hyperkaos @ 75abecfa5001b0f6b5af6cd5f4356763c6ea9f32

lightweight modular puzzle/adventure game engine in C with SDL 1.2

Timer.h (raw)

1
2
3
4
5
6
7
8
typedef struct timer
{
    int startTicks;

} Timer;

void timeStart(Timer self);
int getTicks(Timer self);