diff options
Diffstat (limited to 'src/map.h')
| -rw-r--r-- | src/map.h | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -4,18 +4,17 @@ #ifndef MAP_H #define MAP_H -#define MAP_ZOOM_MIN 2.0 +#define MAP_ZOOM_MIN 0.5 #define MAP_ZOOM_MAX 30.0 typedef struct { Rectangle rect; RenderTexture render; Camera2D camera; + Texture heightmap; Vector2 playerPosition; bool isEnabled; bool isFullSize; - - Texture heightmap; } Map; void initMap(Map* map, const World* world, const Settings* settings); |
