aboutsummaryrefslogtreecommitdiffstats
path: root/src/game.h
diff options
context:
space:
mode:
authornathan <nathansmith@disroot.org>2025-07-06 07:54:28 +0000
committernathan <nathansmith@disroot.org>2025-07-06 07:54:28 +0000
commit404d0f1bdf95d5951bf2a5e77dca2f9dc18f373e (patch)
treedb78303dc890b589696770ad713e801e6e713abf /src/game.h
parent025655dcf21ec40f1730097d3614114c704f5a17 (diff)
downloadFindThings-404d0f1bdf95d5951bf2a5e77dca2f9dc18f373e.tar.gz
FindThings-404d0f1bdf95d5951bf2a5e77dca2f9dc18f373e.tar.bz2
FindThings-404d0f1bdf95d5951bf2a5e77dca2f9dc18f373e.zip
Cleaned up shit
Diffstat (limited to 'src/game.h')
-rw-r--r--src/game.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/game.h b/src/game.h
index 8c9969a..8817633 100644
--- a/src/game.h
+++ b/src/game.h
@@ -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);