aboutsummaryrefslogtreecommitdiff
path: root/graphics/maccursor.h
diff options
context:
space:
mode:
authorMatthew Hoops2011-08-16 00:05:31 -0400
committerMatthew Hoops2011-08-16 00:05:31 -0400
commit1793d92c8ba7b08cc3891dcc567923eb9f5a721e (patch)
treef49f3c372af7bc1720e4f88633c55be326fff01e /graphics/maccursor.h
parent52d8146d9b139629eb69a7be9151f2b0d6e75483 (diff)
downloadscummvm-rg350-1793d92c8ba7b08cc3891dcc567923eb9f5a721e.tar.gz
scummvm-rg350-1793d92c8ba7b08cc3891dcc567923eb9f5a721e.tar.bz2
scummvm-rg350-1793d92c8ba7b08cc3891dcc567923eb9f5a721e.zip
GRAPHICS: Create base Cursor class for Mac/Win cursors
Diffstat (limited to 'graphics/maccursor.h')
-rw-r--r--graphics/maccursor.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/graphics/maccursor.h b/graphics/maccursor.h
index cca7f3456b..a6c8fc95ce 100644
--- a/graphics/maccursor.h
+++ b/graphics/maccursor.h
@@ -28,18 +28,19 @@
* - scumm
*/
-#include "common/stream.h"
-
#ifndef GRAPHICS_MACCURSOR_H
#define GRAPHICS_MACCURSOR_H
+#include "common/stream.h"
+
+#include "graphics/cursor.h"
+
namespace Graphics {
/**
* A Mac crsr or CURS cursor
- * TODO: Think about making a base class with WinCursor
*/
-class MacCursor {
+class MacCursor : public Cursor {
public:
MacCursor();
~MacCursor();