aboutsummaryrefslogtreecommitdiff
path: root/engines/sci/graphics/paint32.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/sci/graphics/paint32.h')
-rw-r--r--engines/sci/graphics/paint32.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/engines/sci/graphics/paint32.h b/engines/sci/graphics/paint32.h
index 7ee9eacf72..8b675d0cf7 100644
--- a/engines/sci/graphics/paint32.h
+++ b/engines/sci/graphics/paint32.h
@@ -27,6 +27,7 @@
#define SCI_GRAPHICS_PAINT32_H
#include "sci/graphics/gui.h"
+#include "sci/graphics/paint.h"
#include "common/hashmap.h"
@@ -34,13 +35,15 @@ namespace Sci {
class GfxPorts;
-class GfxPaint32 {
+class GfxPaint32 : public GfxPaint {
public:
GfxPaint32(ResourceManager *resMan, SegManager *segMan, Kernel *kernel, GfxCache *cache, GfxScreen *screen, GfxPalette *palette);
~GfxPaint32();
void fillRect(Common::Rect rect, byte color);
+ void kernelDrawPicture(GuiResourceId pictureId, int16 animationNr, bool animationBlackoutFlag, bool mirroredFlag, bool addToFlag, int16 EGApaletteNo);
+
private:
ResourceManager *_resMan;
SegManager *_segMan;