Organise project

This commit is contained in:
Harshit-Dhanwalkar 2026-05-13 22:18:22 +05:30
parent c766d23028
commit 02926a2623
13 changed files with 398 additions and 288 deletions

11
include/timing.h Normal file
View file

@ -0,0 +1,11 @@
#ifndef TIMING_H
#define TIMING_H
#include <time.h>
// Initialize framerate control
void timing_init(int fps);
void timing_sleep(struct timespec *start_time);
#endif