aboutsummaryrefslogtreecommitdiffstats
path: root/src/game.h
diff options
context:
space:
mode:
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);