aboutsummaryrefslogtreecommitdiff
path: root/engines/groovie/cursor.h
diff options
context:
space:
mode:
authorHenry Bush2009-01-08 23:06:08 +0000
committerHenry Bush2009-01-08 23:06:08 +0000
commit9446bfa50316e3d1253a1d56f1f996f2ede3fb75 (patch)
tree75cda534848f50f71c1bde85269d09de1a3dafc0 /engines/groovie/cursor.h
parent8eb7d55eca5aaf1acb005654c28b88b1e14111b2 (diff)
downloadscummvm-rg350-9446bfa50316e3d1253a1d56f1f996f2ede3fb75.tar.gz
scummvm-rg350-9446bfa50316e3d1253a1d56f1f996f2ede3fb75.tar.bz2
scummvm-rg350-9446bfa50316e3d1253a1d56f1f996f2ede3fb75.zip
T7G: Stage one of move to ScummVM's CursorMan: rename groovie one so it doesn't have same name
svn-id: r35793
Diffstat (limited to 'engines/groovie/cursor.h')
-rw-r--r--engines/groovie/cursor.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/engines/groovie/cursor.h b/engines/groovie/cursor.h
index 19694b2a0d..ee112bd01d 100644
--- a/engines/groovie/cursor.h
+++ b/engines/groovie/cursor.h
@@ -44,10 +44,10 @@ protected:
uint16 _numFrames;
};
-class CursorMan {
+class GrvCursorMan {
public:
- CursorMan(OSystem *system);
- virtual ~CursorMan();
+ GrvCursorMan(OSystem *system);
+ virtual ~GrvCursorMan();
virtual void animate();
virtual void setStyle(uint8 newStyle);
@@ -66,10 +66,10 @@ protected:
Cursor *_cursor;
};
-class CursorMan_t7g : public CursorMan {
+class GrvCursorMan_t7g : public GrvCursorMan {
public:
- CursorMan_t7g(OSystem *system);
- ~CursorMan_t7g();
+ GrvCursorMan_t7g(OSystem *system);
+ ~GrvCursorMan_t7g();
private:
// Styles data
@@ -85,10 +85,10 @@ private:
byte *loadPalette(Common::File &file);
};
-class CursorMan_v2 : public CursorMan {
+class GrvCursorMan_v2 : public GrvCursorMan {
public:
- CursorMan_v2(OSystem *system);
- ~CursorMan_v2();
+ GrvCursorMan_v2(OSystem *system);
+ ~GrvCursorMan_v2();
};
} // End of Groovie namespace