aboutsummaryrefslogtreecommitdiff
path: root/src/game.h
diff options
context:
space:
mode:
authornathansmithsmith <thenathansmithsmith@gmail.com>2023-07-18 05:54:30 -0600
committernathansmithsmith <thenathansmithsmith@gmail.com>2023-07-18 05:54:30 -0600
commitf3f5fedbf591c10fa675a32103bab9480b42abe8 (patch)
tree54b46a23279cc45091393762c0d01b9c3637b729 /src/game.h
parent77a06748f9f394486cad833e2ca351e8dbcc7361 (diff)
Bullet system added
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);