aboutsummaryrefslogtreecommitdiff
path: root/engines/fullpipe/gfx.h
diff options
context:
space:
mode:
authorEugene Sandulenko2013-08-18 23:20:21 +0300
committerEugene Sandulenko2013-09-06 14:51:16 +0300
commitf9cefd02dfa3a8dd665e23d002aea870a3269e03 (patch)
treee534aee95cf248d330d2b092b77b31cf2b5d995f /engines/fullpipe/gfx.h
parent6a172694fb5da9851447eaf30403e63ed032b98b (diff)
downloadscummvm-rg350-f9cefd02dfa3a8dd665e23d002aea870a3269e03.tar.gz
scummvm-rg350-f9cefd02dfa3a8dd665e23d002aea870a3269e03.tar.bz2
scummvm-rg350-f9cefd02dfa3a8dd665e23d002aea870a3269e03.zip
FULLPIPE: Implement Picture::isPointInside()
Diffstat (limited to 'engines/fullpipe/gfx.h')
-rw-r--r--engines/fullpipe/gfx.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/engines/fullpipe/gfx.h b/engines/fullpipe/gfx.h
index eeff02646e..4c4ed3034d 100644
--- a/engines/fullpipe/gfx.h
+++ b/engines/fullpipe/gfx.h
@@ -104,6 +104,7 @@ class Picture : public MemoryObject {
void setAlpha(byte alpha) { _alpha = alpha; }
Common::Point *getDimensions(Common::Point *p);
+ bool isPointInside(int x, int y);
byte *getPaletteData() { return _paletteData; }
void setPaletteData(byte *pal);