aboutsummaryrefslogtreecommitdiff
path: root/engines/gargoyle/events.h
diff options
context:
space:
mode:
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: