Factor game logic into own module

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