diff options
Diffstat (limited to 'src/game.h')
-rw-r--r-- | src/game.h | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/src/game.h b/src/game.h index 6d8a64f..200b691 100644 --- a/src/game.h +++ b/src/game.h | |||
@@ -92,12 +92,19 @@ public: | |||
92 | int player_y = 0; | 92 | int player_y = 0; |
93 | bool renderPlayer = true; | 93 | bool renderPlayer = true; |
94 | 94 | ||
95 | int curZoom = INIT_ZOOM; | ||
96 | int maxZoom = INIT_ZOOM; | 95 | int maxZoom = INIT_ZOOM; |
97 | 96 | ||
97 | int curZoom = INIT_ZOOM; | ||
98 | int curBoundX = map.getLeft(); | ||
99 | int curBoundY = map.getTop(); | ||
100 | |||
98 | bool zooming = false; | 101 | bool zooming = false; |
99 | //size_t oldZoom; | ||
100 | int zoomProgress = 0; | 102 | int zoomProgress = 0; |
103 | int zoomLength; | ||
104 | int lastZoomTop; | ||
105 | int lastZoomLeft; | ||
106 | int lastZoomWidth; | ||
107 | int lastZoomHeight; | ||
101 | 108 | ||
102 | bool firstInput = false; | 109 | bool firstInput = false; |
103 | Input lastInput; | 110 | Input lastInput; |