aboutsummaryrefslogtreecommitdiff
path: root/src/game.h
diff options
context:
space:
mode:
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 78eb873..555b5b4 100644
--- a/src/game.h
+++ b/src/game.h
@@ -6,6 +6,7 @@
#include "assets.h"
#include "world.h"
#include "settings.h"
+#include "bullets.h"
#ifndef GAME_H
#define GAME_H
@@ -23,6 +24,7 @@ typedef struct Game {
Assets assets;
World world;
Settings settings;
+ Bullets bullets;
} Game;
void initGame(Game * game);