aboutsummaryrefslogtreecommitdiff
path: root/engines/gargoyle/events.h
diff options
context:
space:
mode:
authorPaul Gilbert2018-10-28 14:43:09 -0700
committerPaul Gilbert2018-12-08 19:05:59 -0800
commitffe0f5220bef728938847f54bdc4e489739d6ded (patch)
treef2bc74f115b5cfc36932b6b4901b0d5400caf3bd /engines/gargoyle/events.h
parent13e2838715247b6b6ca5b17d61f80fa516d23c34 (diff)
downloadscummvm-rg350-ffe0f5220bef728938847f54bdc4e489739d6ded.tar.gz
scummvm-rg350-ffe0f5220bef728938847f54bdc4e489739d6ded.tar.bz2
scummvm-rg350-ffe0f5220bef728938847f54bdc4e489739d6ded.zip
GLK: Converted fillRect to use a Rect to specify bounds
Diffstat (limited to 'engines/gargoyle/events.h')
-rw-r--r--engines/gargoyle/events.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/engines/gargoyle/events.h b/engines/gargoyle/events.h
index 544b524d51..f49ef35ac5 100644
--- a/engines/gargoyle/events.h
+++ b/engines/gargoyle/events.h
@@ -24,6 +24,7 @@
#define GARGOYLE_EVENTS_H
#include "common/events.h"
+#include "gargoyle/utils.h"
namespace Gargoyle {
@@ -171,17 +172,17 @@ private:
/**
* Handle mouse move events
*/
- void handleMouseMove(const Common::Point &pos);
+ void handleMouseMove(const Point &pos);
/**
* Handle mouse down events
*/
- void handleButtonDown(bool isLeft, const Common::Point &pos);
+ void handleButtonDown(bool isLeft, const Point &pos);
/**
* Handle mouse up events
*/
- void handleButtonUp(bool isLeft, const Common::Point &pos);
+ void handleButtonUp(bool isLeft, const Point &pos);
public:
bool _forceClick;
public: