aboutsummaryrefslogtreecommitdiff
path: root/engines/bladerunner/mouse.cpp
diff options
context:
space:
mode:
authorThomas Fach-Pedersen2017-08-22 18:57:50 +0200
committerThomas Fach-Pedersen2017-08-22 19:02:37 +0200
commita4c799238841e4e9ae63985b503a669449521cd6 (patch)
tree5a605070c01d5d1a3eca408d1c511f294aa82fd3 /engines/bladerunner/mouse.cpp
parent867b8dbb9277f2cde6c45c107b15edd1a6f73b10 (diff)
downloadscummvm-rg350-a4c799238841e4e9ae63985b503a669449521cd6.tar.gz
scummvm-rg350-a4c799238841e4e9ae63985b503a669449521cd6.tar.bz2
scummvm-rg350-a4c799238841e4e9ae63985b503a669449521cd6.zip
BLADERUNNER: Add Dialogue Menu
Diffstat (limited to 'engines/bladerunner/mouse.cpp')
-rw-r--r--engines/bladerunner/mouse.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/engines/bladerunner/mouse.cpp b/engines/bladerunner/mouse.cpp
index be114dc1bb..4c5a9b91a0 100644
--- a/engines/bladerunner/mouse.cpp
+++ b/engines/bladerunner/mouse.cpp
@@ -146,6 +146,11 @@ void Mouse::setCursor(int cursor) {
}
}
+void Mouse::getXY(int *x, int *y) {
+ *x = _x;
+ *y = _y;
+}
+
void Mouse::disable() {
++_disabledCounter;
}