aboutsummaryrefslogtreecommitdiff
path: root/engines/tony/input.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/tony/input.h')
-rw-r--r--engines/tony/input.h28
1 files changed, 7 insertions, 21 deletions
diff --git a/engines/tony/input.h b/engines/tony/input.h
index 55b067ec43..d07eaefe34 100644
--- a/engines/tony/input.h
+++ b/engines/tony/input.h
@@ -59,9 +59,7 @@ public:
/**
* Reading of the mouse
*/
- RMPoint mousePos() {
- return _mousePos;
- }
+ RMPoint mousePos();
/**
* Current status of the mouse buttons
@@ -72,24 +70,12 @@ public:
/**
* Events of mouse clicks
*/
- bool mouseLeftClicked() {
- return _leftClickMouse;
- }
- bool mouseRightClicked() {
- return _rightClickMouse;
- }
- bool mouseBothClicked() {
- return _leftClickMouse && _rightClickMouse;
- }
- bool mouseLeftReleased() {
- return _leftReleaseMouse;
- }
- bool mouseRightReleased() {
- return _rightReleaseMouse;
- }
- bool mouseBothReleased() {
- return _leftReleaseMouse && _rightReleaseMouse;
- }
+ bool mouseLeftClicked();
+ bool mouseRightClicked();
+ bool mouseBothClicked();
+ bool mouseLeftReleased();
+ bool mouseRightReleased();
+ bool mouseBothReleased();
/**
* Returns true if the given key is pressed