aboutsummaryrefslogtreecommitdiff
path: root/engines/mads/sprites.h
diff options
context:
space:
mode:
authorPaul Gilbert2014-03-05 09:04:53 -0500
committerPaul Gilbert2014-03-05 09:04:53 -0500
commitd98f890029936dfa8139cf8dce4756ec92bc2568 (patch)
tree04bd9c6f8e872f01ffaaf8ab048de751f25541b8 /engines/mads/sprites.h
parent23ebeec600f8210601dd45fc42c21a596fa6d127 (diff)
downloadscummvm-rg350-d98f890029936dfa8139cf8dce4756ec92bc2568.tar.gz
scummvm-rg350-d98f890029936dfa8139cf8dce4756ec92bc2568.tar.bz2
scummvm-rg350-d98f890029936dfa8139cf8dce4756ec92bc2568.zip
MADS: Completed implementing drawElements and support methods
Diffstat (limited to 'engines/mads/sprites.h')
-rw-r--r--engines/mads/sprites.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/engines/mads/sprites.h b/engines/mads/sprites.h
index b1208d0df5..f9ae46ad9b 100644
--- a/engines/mads/sprites.h
+++ b/engines/mads/sprites.h
@@ -114,6 +114,8 @@ public:
Common::Point _pos;
Common::Point _offset;
uint8 _encoding;
+
+ byte getTransparencyIndex() const;
};
class SpriteSlotSubset {
@@ -188,6 +190,11 @@ public:
*/
void drawBackground();
+ /**
+ * Draw any sprites into the foreground of the scene
+ */
+ void drawForeground(MSurface *s);
+
void cleanUp();
};