2024-08-02 21:10:58 -03:00
|
|
|
#ifndef TIMER_H
|
|
|
|
#define TIMER_H
|
|
|
|
|
2024-10-02 20:31:45 -03:00
|
|
|
#include <stdint.h>
|
|
|
|
|
|
|
|
void timer_init();
|
|
|
|
void timer_update();
|
|
|
|
int get_frame_rate();
|
|
|
|
|
|
|
|
uint32_t get_elapsed_frames();
|
|
|
|
void reset_elapsed_frames();
|
2024-08-02 21:10:58 -03:00
|
|
|
|
|
|
|
#endif
|