fps in window title

This commit is contained in:
2025-09-14 13:15:40 +02:00
parent 43787715b5
commit 5b26def204
9 changed files with 102 additions and 27 deletions
+12
View File
@@ -0,0 +1,12 @@
#include "types.h"
#ifndef TIMER_H
#define TIMER_H
Timer create_timer(const unsigned int target);
bool inc_timer(Timer *timer);
double reset_and_count(Timer *timer);
#endif