Factor game logic into own module

This commit is contained in:
Camden Dixie O'Brien
2025-10-13 23:25:46 +01:00
parent 941cb8745c
commit a698e0af7d
4 changed files with 318 additions and 287 deletions

8
game.h Normal file
View File

@@ -0,0 +1,8 @@
#ifndef GAME_H
#define GAME_H
void game_init(float aspect);
bool game_update();
void game_draw();
#endif