mirror of
https://github.com/luksamuk/engine-psx.git
synced 2025-04-28 13:28:02 +03:00
16 lines
266 B
C
16 lines
266 B
C
#ifndef TIMER_H
|
|
#define TIMER_H
|
|
|
|
#include <stdint.h>
|
|
|
|
void timer_init();
|
|
void timer_update();
|
|
int get_frame_rate();
|
|
|
|
uint32_t get_elapsed_frames();
|
|
void pause_elapsed_frames();
|
|
void reset_elapsed_frames();
|
|
|
|
uint32_t get_global_frames();
|
|
|
|
#endif
|