From 0e8b4d5e38593cd9299da73ae84b5ca5ca61042f Mon Sep 17 00:00:00 2001 From: nathan Date: Tue, 25 Nov 2025 08:15:02 -0700 Subject: Really fancy looking map --- src/map.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src/map.h') 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); -- cgit v1.2.3