From 734e4f628be88a37b09965dacc77e60152dca25d Mon Sep 17 00:00:00 2001 From: Paul Gilbert Date: Fri, 26 Aug 2011 19:07:43 +1000 Subject: TSAGE: Implemented lots more Blue Force functionality, and started on first in-game scene --- engines/tsage/events.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'engines/tsage/events.h') diff --git a/engines/tsage/events.h b/engines/tsage/events.h index c36db59270..db1941082d 100644 --- a/engines/tsage/events.h +++ b/engines/tsage/events.h @@ -67,6 +67,8 @@ enum CursorType { CURSOR_NONE = -1, CURSOR_CROSSHAIRS = -2, CURSOR_ARROW = -3 }; +class GfxSurface; + class EventsClass : public SaveListener { private: Common::Event _event; @@ -84,10 +86,11 @@ public: void pushCursor(CursorType cursorType); void popCursor(); void setCursor(Graphics::Surface &cursor, int transColor, const Common::Point &hotspot, CursorType cursorId); + void setCursor(GfxSurface &cursor); void setCursorFromFlag(); CursorType getCursor() const { return _currentCursor; } void showCursor(); - void hideCursor(); + CursorType hideCursor(); bool isCursorVisible() const; bool pollEvent(); -- cgit v1.2.3