Move all input handling into input module

This commit is contained in:
Camden Dixie O'Brien
2025-10-14 12:29:13 +01:00
parent 7b31fcfac5
commit 8276769446
5 changed files with 88 additions and 103 deletions

2
game.h
View File

@@ -2,7 +2,7 @@
#define GAME_H
void game_init(float aspect);
bool game_update();
void game_update();
void game_draw();
#endif