aboutsummaryrefslogtreecommitdiff
path: root/engines/voyeur/events.h
diff options
context:
space:
mode:
authorPaul Gilbert2013-06-21 00:18:19 -0400
committerPaul Gilbert2013-06-21 00:18:19 -0400
commit8c2b956120c9f11e6aa89753aa5dcdee8d2f1d7a (patch)
tree27ee84436a282ce9143bd8ede4c8da0a60678c7e /engines/voyeur/events.h
parent975cc8075d89f91309c35adf778bb286ccc7d84e (diff)
downloadscummvm-rg350-8c2b956120c9f11e6aa89753aa5dcdee8d2f1d7a.tar.gz
scummvm-rg350-8c2b956120c9f11e6aa89753aa5dcdee8d2f1d7a.tar.bz2
scummvm-rg350-8c2b956120c9f11e6aa89753aa5dcdee8d2f1d7a.zip
VOYEUR: Converted cursor drawing to use CursorMan
Diffstat (limited to 'engines/voyeur/events.h')
-rw-r--r--engines/voyeur/events.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/engines/voyeur/events.h b/engines/voyeur/events.h
index 8689127b0d..0b78bc2dd8 100644
--- a/engines/voyeur/events.h
+++ b/engines/voyeur/events.h
@@ -25,6 +25,8 @@
#include "common/scummsys.h"
#include "common/list.h"
+#include "graphics/surface.h"
+#include "voyeur/files.h"
#include "voyeur/game.h"
namespace Voyeur {
@@ -95,7 +97,11 @@ public:
void addIntNode(IntNode *node);
void addFadeInt();
- void setCursorTo(int idx, int mode);
+ void setCursor(PictureResource *pic);
+ void setCursor(byte *cursorData, int width, int height);
+ void setCursorColor(int idx, int mode);
+ void mouseOn();
+ void mouseOff();
Common::Point getMousePos() { return _mousePos; }
};