diff options
author | nathansmithsmith <thenathansmithsmith@gmail.com> | 2023-07-07 23:10:23 -0600 |
---|---|---|
committer | nathansmithsmith <thenathansmithsmith@gmail.com> | 2023-07-07 23:10:23 -0600 |
commit | e5268813dcbdc0d90a081b2223ebc21749038635 (patch) | |
tree | 7c917996749e4123fb1fe49ddd1ed3b8f7e92334 /src/game.h | |
parent | a90e1987de75cfecc2693952625af8cce507ae95 (diff) |
Better world
Diffstat (limited to 'src/game.h')
-rw-r--r-- | src/game.h | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -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); |