Add FPS counter and collision linecast (WIP)

This commit is contained in:
Lucas S. Vieira 2024-08-02 21:10:58 -03:00
parent 5c0ad0d277
commit 7cd01c2b4a
7 changed files with 368 additions and 62 deletions

8
include/timer.h Normal file
View file

@ -0,0 +1,8 @@
#ifndef TIMER_H
#define TIMER_H
void timer_init();
void timer_update();
int get_frame_rate();
#endif