Files
cell/source/timer.h

15 lines
243 B
C

#ifndef TIMER_H
#include "script.h"
typedef struct timer {
double remain;
JSValue fn;
} timer;
timer *timer_make(JSContext *js, JSValue fn);
void timer_free(JSRuntime *rt, timer *t);
void timer_update(JSContext *js, double dt);
#endif