Patch 664895: Cannon fixes. Porters, this requires a new OSystem interface function

svn-id: r6365
This commit is contained in:
James Brown 2003-01-09 08:07:13 +00:00
parent b946f08105
commit 819a96d05b
2 changed files with 15 additions and 0 deletions

View file

@ -52,6 +52,11 @@ public:
// Set the position of the mouse cursor
void set_mouse_pos(int x, int y);
// Warp the mouse cursor. Where set_mouse_pos() only informs the
// backend of the mouse cursor's current position, this function
// actually moves the cursor to the specified position.
void warp_mouse(int x, int y);
// Set the bitmap that's used when drawing the cursor.
void set_mouse_cursor(const byte *buf, uint w, uint h, int hotspot_x, int hotspot_y);