aboutsummaryrefslogtreecommitdiff
path: root/engines/gob/pregob/pregob.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/gob/pregob/pregob.h')
-rw-r--r--engines/gob/pregob/pregob.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/engines/gob/pregob/pregob.h b/engines/gob/pregob/pregob.h
index 6418d6fd8a..e0f7ca907d 100644
--- a/engines/gob/pregob/pregob.h
+++ b/engines/gob/pregob/pregob.h
@@ -26,6 +26,7 @@
namespace Gob {
class GobEngine;
+class Surface;
class PreGob {
public:
@@ -49,6 +50,19 @@ protected:
*/
void setPalette(const byte *palette, uint16 size); ///< Change the palette
+ void addCursor();
+ void removeCursor();
+
+ void setCursor(Surface &sprite, int16 hotspotX, int16 hotspotY);
+ void setCursor(Surface &sprite, int16 left, int16 top, int16 right, int16 bottom,
+ int16 hotspotX, int16 hotspotY);
+
+ void showCursor();
+ void hideCursor();
+
+ bool isCursorVisible() const;
+
+
GobEngine *_vm;
private: