aboutsummaryrefslogtreecommitdiff
path: root/src/game.h
diff options
context:
space:
mode:
authornathansmithsmith <nathansmith7@mailfence.com>2023-10-02 21:27:41 -0600
committernathansmithsmith <nathansmith7@mailfence.com>2023-10-02 21:27:41 -0600
commit2bd87ba9d98973e59e89fab4be60ce4ef4cf95ae (patch)
tree2e8e9e17c79115bf3d1b9d7e01297330a9e2f774 /src/game.h
parent5b03b11020a39790b81a00cf5cae8f04bc4caffa (diff)
Now using the level handler
Diffstat (limited to 'src/game.h')
-rw-r--r--src/game.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/game.h b/src/game.h
index 7149e4d..fd84c74 100644
--- a/src/game.h
+++ b/src/game.h
@@ -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;