aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/headers/WorldScene.hpp
diff options
context:
space:
mode:
authorNao Pross <naopross@thearcway.org>2018-02-16 21:10:24 +0100
committerNao Pross <naopross@thearcway.org>2018-02-16 21:10:24 +0100
commit1010d0d526ad7419449f19ac4db42d63f7731540 (patch)
treee037bc5f4f30ffc5324cccc9a3b018f7937c2bab /src/main/headers/WorldScene.hpp
parentAdd RangedWeapon, MeleeWeapon (diff)
downloadSubconscious-old-1010d0d526ad7419449f19ac4db42d63f7731540.tar.gz
Subconscious-old-1010d0d526ad7419449f19ac4db42d63f7731540.zip
Add basic widget implementation (not usable) and configure cmake
Diffstat (limited to 'src/main/headers/WorldScene.hpp')
-rw-r--r--src/main/headers/WorldScene.hpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/main/headers/WorldScene.hpp b/src/main/headers/WorldScene.hpp
index d21d885..2835842 100644
--- a/src/main/headers/WorldScene.hpp
+++ b/src/main/headers/WorldScene.hpp
@@ -23,9 +23,10 @@ public:
virtual void pan(int dx, int dy);
private:
- Map map;
-
+ float _zoom = 1;
unsigned _tileSize;
+
+ Map _map;
};
#endif