prosperon/source/engine/timer.h
2023-03-17 15:25:35 +00:00

26 lines
616 B
C

#ifndef TIMER
#define TIMER
struct timer {
int timerid;
int on;
double interval; // Time of timer
int repeat;
double remain_time; // How much time until the timer executes
void (*cb)(void *data);
void *data;
int owndata;
int next;
};
int timer_make(double interval, void (*callback)(void *param), void *param, int own);
struct timer *id2timer(int id);
void timer_remove(int id);
void timer_start(struct timer *t);
void timer_pause(struct timer *t);
void timer_stop(struct timer *t);
void timer_update(double dt);
void timerr_settime(struct timer *t, double interval);
#endif