aboutsummaryrefslogtreecommitdiff
path: root/engines/mutationofjb/room.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/mutationofjb/room.h')
-rw-r--r--engines/mutationofjb/room.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/engines/mutationofjb/room.h b/engines/mutationofjb/room.h
index e57d2ebb61..083fba6335 100644
--- a/engines/mutationofjb/room.h
+++ b/engines/mutationofjb/room.h
@@ -26,6 +26,7 @@
#include "common/scummsys.h"
#include "common/array.h"
#include "graphics/surface.h"
+#include "graphics/managed_surface.h"
namespace Graphics {
class Screen;
@@ -44,9 +45,11 @@ public:
Room(Game *game, Graphics::Screen *screen);
bool load(uint8 roomNumber, bool roomB);
void drawObjectAnimation(uint8 objectId, int animOffset);
+ void redraw();
private:
Game *_game;
Graphics::Screen *_screen;
+ Graphics::ManagedSurface _background;
Common::Array<Graphics::Surface> _surfaces;
Common::Array<int> _objectsStart;
};