From 3f0be672f9c5a07a98be0dc703b95f1bbe73f33e Mon Sep 17 00:00:00 2001 From: nathansmithsmith Date: Sun, 9 Jul 2023 00:53:10 -0600 Subject: Mouse control working --- src/game.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/game.h') diff --git a/src/game.h b/src/game.h index e1f318a..78eb873 100644 --- a/src/game.h +++ b/src/game.h @@ -5,6 +5,7 @@ #include "entity.h" #include "assets.h" #include "world.h" +#include "settings.h" #ifndef GAME_H #define GAME_H @@ -21,6 +22,7 @@ typedef struct Game { Camera3D playerCamera; Assets assets; World world; + Settings settings; } Game; void initGame(Game * game); -- cgit v1.2.3