diff options
Diffstat (limited to 'engines/draci')
-rw-r--r-- | engines/draci/mouse.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/engines/draci/mouse.h b/engines/draci/mouse.h index 918b10d75f..8135482929 100644 --- a/engines/draci/mouse.h +++ b/engines/draci/mouse.h @@ -53,6 +53,9 @@ public: CursorType getCursorType() { return _cursorType; } bool lButtonPressed() { return _lButton; } bool rButtonPressed() { return _rButton; } + void lButtonSet(bool state) { _lButton = state; } + void rButtonSet(bool state) { _rButton = state; } + uint16 getPosX() { return _x; } uint16 getPosY() { return _y; } |