diff options
author | nathan <nathansmith@disroot.org> | 2025-07-06 07:54:28 +0000 |
---|---|---|
committer | nathan <nathansmith@disroot.org> | 2025-07-06 07:54:28 +0000 |
commit | 404d0f1bdf95d5951bf2a5e77dca2f9dc18f373e (patch) | |
tree | db78303dc890b589696770ad713e801e6e713abf /src/game.h | |
parent | 025655dcf21ec40f1730097d3614114c704f5a17 (diff) | |
download | FindThings-404d0f1bdf95d5951bf2a5e77dca2f9dc18f373e.tar.gz FindThings-404d0f1bdf95d5951bf2a5e77dca2f9dc18f373e.tar.bz2 FindThings-404d0f1bdf95d5951bf2a5e77dca2f9dc18f373e.zip |
Cleaned up shit
Diffstat (limited to 'src/game.h')
-rw-r--r-- | src/game.h | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -2,6 +2,7 @@ #include "settings.h" #include "assets.h" #include "player.h" +#include "world.h" #ifndef GAME_H #define GAME_H @@ -16,9 +17,7 @@ struct Game { Settings settings; Assets assets; Player player; - - Model heightmap; - Color* heightmapColors; + World world; }; void initGame(Game* game); |