diff options
Diffstat (limited to '')
-rw-r--r-- | src/main/headers/WorldScene.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/headers/WorldScene.hpp b/src/main/headers/WorldScene.hpp index 09f3120..ec12930 100644 --- a/src/main/headers/WorldScene.hpp +++ b/src/main/headers/WorldScene.hpp @@ -10,8 +10,8 @@ class WorldScene : public Scene { public: - constexpr static int ZOOM_MIN = 1; - constexpr static int ZOOM_MAX = 100; + constexpr static float MAX_ZOOM = 10; + constexpr static float MIN_ZOOM = 1/2.0; constexpr static int DEFAULT_TILE_SIZE_PX = 20; WorldScene(sf::RenderWindow &window); |