diff options
| author | nathan <nathansmith@disroot.org> | 2025-11-25 15:15:02 +0000 |
|---|---|---|
| committer | nathan <nathansmith@disroot.org> | 2025-11-25 15:15:02 +0000 |
| commit | 0e8b4d5e38593cd9299da73ae84b5ca5ca61042f (patch) | |
| tree | bcf848d6f30329ed978a3d0551819ef31d56dd3b /src/map.h | |
| parent | 05624b044e59e70d10b786538f55e77c19cc3c8c (diff) | |
| download | FindThings-0e8b4d5e38593cd9299da73ae84b5ca5ca61042f.tar.gz FindThings-0e8b4d5e38593cd9299da73ae84b5ca5ca61042f.tar.bz2 FindThings-0e8b4d5e38593cd9299da73ae84b5ca5ca61042f.zip | |
Really fancy looking map
Diffstat (limited to 'src/map.h')
| -rw-r--r-- | src/map.h | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -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); |
