aboutsummaryrefslogtreecommitdiff
path: root/src/game.h
diff options
context:
space:
mode:
authornathansmithsmith <thenathansmithsmith@gmail.com>2023-07-09 00:53:10 -0600
committernathansmithsmith <thenathansmithsmith@gmail.com>2023-07-09 00:53:10 -0600
commit3f0be672f9c5a07a98be0dc703b95f1bbe73f33e (patch)
treeaeb7776878e3460f7ba1f33cf2c0d195eb45f2c5 /src/game.h
parentb92adb44b618db0272819cb77e5727441c566838 (diff)
Mouse control working
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 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);