From eff6d7308d69ece8b89fe22e529b815f67a893e2 Mon Sep 17 00:00:00 2001 From: nathan Date: Mon, 24 Nov 2025 06:47:58 -0700 Subject: Map zoom working --- src/map.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/map.h') diff --git a/src/map.h b/src/map.h index 9e94190..23faebe 100644 --- a/src/map.h +++ b/src/map.h @@ -4,12 +4,16 @@ #ifndef MAP_H #define MAP_H +#define MAP_ZOOM_MIN 1.0 +#define MAP_ZOOM_MAX 30.0 + typedef struct { Rectangle rect; Rectangle heightmapRect; float zoom; Vector2 playerPosition; float playerRotation; + bool isEnabled; bool isFullSize; } Map; -- cgit v1.2.3