diff options
author | Mattes D <github@xoft.cz> | 2014-10-03 19:41:42 +0200 |
---|---|---|
committer | Mattes D <github@xoft.cz> | 2014-10-03 19:41:42 +0200 |
commit | 0aa1b5667e0ba97101f60343323c595cc7866c6d (patch) | |
tree | 5d39793f4b9e6662a7e53f8cdb4c375bdc7f23ff /Tools/QtBiomeVisualiser/BiomeView.h | |
parent | QtBiomeVisualiser: Zoom is now limited and aligned to steps. (diff) | |
download | cuberite-0aa1b5667e0ba97101f60343323c595cc7866c6d.tar cuberite-0aa1b5667e0ba97101f60343323c595cc7866c6d.tar.gz cuberite-0aa1b5667e0ba97101f60343323c595cc7866c6d.tar.bz2 cuberite-0aa1b5667e0ba97101f60343323c595cc7866c6d.tar.lz cuberite-0aa1b5667e0ba97101f60343323c595cc7866c6d.tar.xz cuberite-0aa1b5667e0ba97101f60343323c595cc7866c6d.tar.zst cuberite-0aa1b5667e0ba97101f60343323c595cc7866c6d.zip |
Diffstat (limited to '')
-rw-r--r-- | Tools/QtBiomeVisualiser/BiomeView.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Tools/QtBiomeVisualiser/BiomeView.h b/Tools/QtBiomeVisualiser/BiomeView.h index ae5dd2338..40d8b96ae 100644 --- a/Tools/QtBiomeVisualiser/BiomeView.h +++ b/Tools/QtBiomeVisualiser/BiomeView.h @@ -44,6 +44,9 @@ signals: /** Signalled when the user presses a key to decrease zoom. */ void decreaseZoom(); + /** Emitted when the user moves the mouse, to reflect the current block under the cursor. */ + void hoverChanged(int a_BlockX, int a_BlockZ, int a_Biome); + public slots: /** Redraw the entire widget area. */ void redraw(); |