diff options
author | nathansmithsmith <nathansmith7@mailfence.com> | 2023-10-02 21:27:41 -0600 |
---|---|---|
committer | nathansmithsmith <nathansmith7@mailfence.com> | 2023-10-02 21:27:41 -0600 |
commit | 2bd87ba9d98973e59e89fab4be60ce4ef4cf95ae (patch) | |
tree | 2e8e9e17c79115bf3d1b9d7e01297330a9e2f774 /src/game.h | |
parent | 5b03b11020a39790b81a00cf5cae8f04bc4caffa (diff) |
Now using the level handler
Diffstat (limited to 'src/game.h')
-rw-r--r-- | src/game.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -7,6 +7,7 @@ #include "world.h" #include "settings.h" #include "bullets.h" +#include "levels.h" #ifndef GAME_H #define GAME_H @@ -23,6 +24,7 @@ typedef struct Game { Cameras cameras; Assets assets; World world; + Levels levels; Settings settings; } Game; |