diff options
author | nathansmithsmith <thenathansmithsmith@gmail.com> | 2023-07-18 05:54:30 -0600 |
---|---|---|
committer | nathansmithsmith <thenathansmithsmith@gmail.com> | 2023-07-18 05:54:30 -0600 |
commit | f3f5fedbf591c10fa675a32103bab9480b42abe8 (patch) | |
tree | 54b46a23279cc45091393762c0d01b9c3637b729 /src/game.h | |
parent | 77a06748f9f394486cad833e2ca351e8dbcc7361 (diff) |
Bullet system added
Diffstat (limited to 'src/game.h')
-rw-r--r-- | src/game.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -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); |