aboutsummaryrefslogtreecommitdiff
path: root/src/game.h
diff options
context:
space:
mode:
authornathansmithsmith <thenathansmithsmith@gmail.com>2023-07-07 23:10:23 -0600
committernathansmithsmith <thenathansmithsmith@gmail.com>2023-07-07 23:10:23 -0600
commite5268813dcbdc0d90a081b2223ebc21749038635 (patch)
tree7c917996749e4123fb1fe49ddd1ed3b8f7e92334 /src/game.h
parenta90e1987de75cfecc2693952625af8cce507ae95 (diff)
Better world
Diffstat (limited to 'src/game.h')
-rw-r--r--src/game.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/game.h b/src/game.h
index f875b62..e1f318a 100644
--- a/src/game.h
+++ b/src/game.h
@@ -3,6 +3,8 @@
#include "gameScreen.h"
#include "playerCamera.h"
#include "entity.h"
+#include "assets.h"
+#include "world.h"
#ifndef GAME_H
#define GAME_H
@@ -17,8 +19,8 @@ typedef struct Game {
MainMenu mainMenu;
GameScreen gameScreen;
Camera3D playerCamera;
-
- Entity ship;
+ Assets assets;
+ World world;
} Game;
void initGame(Game * game);