Large refactor - IMGUI to Nuklear

This commit is contained in:
2022-06-21 17:48:19 +00:00
parent b82ea3d670
commit 162aebe3fa
142 changed files with 67753 additions and 181473 deletions

14
source/engine/timer.h Normal file
View File

@@ -0,0 +1,14 @@
#ifndef TIMER
#define TIMER
struct timer {
int timerid;
double fire_time;
};
void timer_init();
struct timer *timer_make(int interval, void *(*callback)(void *param), void *param);
void timer_remove(struct timer *t);
#endif