Move all input handling into input module

This commit is contained in:
2025-10-18 17:43:22 +01:00
parent f992dd3d39
commit 79dc3c1256
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