aboutsummaryrefslogtreecommitdiffstats
path: root/src/map.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/map.h')
-rw-r--r--src/map.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/map.h b/src/map.h
index 9a1d41e..4a71504 100644
--- a/src/map.h
+++ b/src/map.h
@@ -14,9 +14,11 @@ typedef struct {
Vector2 playerPosition;
bool isEnabled;
bool isFullSize;
+
+ Texture heightmap;
} Map;
-void initMap(Map* map, const Settings* settings);
+void initMap(Map* map, const World* world, const Settings* settings);
void updateMap(Map* map, Game* game);
void closeMap(Map* map);