aboutsummaryrefslogtreecommitdiff
path: root/engines/m4/scene.h
diff options
context:
space:
mode:
authorPaul Gilbert2010-03-16 08:26:08 +0000
committerPaul Gilbert2010-03-16 08:26:08 +0000
commit730405f975e05659b5f37ffd5bd8761eb20c7af4 (patch)
tree5a1c37e92f20b8c7546f753e8eceaf00eedf130f /engines/m4/scene.h
parenta1f1cdf820f5eefac4fbcba8a596646fc05b954e (diff)
downloadscummvm-rg350-730405f975e05659b5f37ffd5bd8761eb20c7af4.tar.gz
scummvm-rg350-730405f975e05659b5f37ffd5bd8761eb20c7af4.tar.bz2
scummvm-rg350-730405f975e05659b5f37ffd5bd8761eb20c7af4.zip
Further code implemented for the current action display
svn-id: r48266
Diffstat (limited to 'engines/m4/scene.h')
-rw-r--r--engines/m4/scene.h5
1 files changed, 1 insertions, 4 deletions
diff --git a/engines/m4/scene.h b/engines/m4/scene.h
index 67acfc6654..d232c16974 100644
--- a/engines/m4/scene.h
+++ b/engines/m4/scene.h
@@ -64,8 +64,6 @@ public:
char pictureBase[MAX_CHK_FILENAME_SIZE];
int32 hotspotCount;
HotSpotList *hotspots;
- int32 parallaxCount;
- HotSpotList *parallax;
int32 propsCount;
HotSpotList *props;
int32 frontY, backY;
@@ -103,13 +101,12 @@ public:
virtual void leftClick(int x, int y) = 0;
virtual void rightClick(int x, int y) = 0;
virtual void setAction(int action, int objectId = -1) = 0;
- virtual void setStatusText(const char *text) = 0;
virtual void update() = 0;
+ virtual void showHotSpots();
// TODO: perhaps move playIntro() someplace else?
void playIntro();
void showSprites();
- void showHotSpots();
void showCodes();
int getCurrentScene() { return _currentScene; }
M4Surface *getBackgroundSurface() const { return _backgroundSurface; }