aboutsummaryrefslogtreecommitdiff
path: root/engines/titanic/support/movie.h
diff options
context:
space:
mode:
authorPaul Gilbert2016-06-27 23:48:13 -0400
committerPaul Gilbert2016-07-15 19:25:41 -0400
commit0715be79269a0830136f76e78da2e893ce2e2ed4 (patch)
tree03e6aab25e84b9792437d65caf9d072af506768b /engines/titanic/support/movie.h
parent4db07ba145f75cdcf65a88b136790abc891b2745 (diff)
downloadscummvm-rg350-0715be79269a0830136f76e78da2e893ce2e2ed4.tar.gz
scummvm-rg350-0715be79269a0830136f76e78da2e893ce2e2ed4.tar.bz2
scummvm-rg350-0715be79269a0830136f76e78da2e893ce2e2ed4.zip
TITANIC: Added CGameObject text methods
Diffstat (limited to 'engines/titanic/support/movie.h')
-rw-r--r--engines/titanic/support/movie.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/engines/titanic/support/movie.h b/engines/titanic/support/movie.h
index 61dd4cf61d..da3285547d 100644
--- a/engines/titanic/support/movie.h
+++ b/engines/titanic/support/movie.h
@@ -60,6 +60,11 @@ public:
* Plays the movie
*/
virtual void play(uint startFrame, uint endFrame, int v3, bool v4) = 0;
+
+ /**
+ * Plays the movie
+ */
+ virtual void play(const Rect &rect, int v1, int v2) = 0;
/**
* Plays a sub-section of a movie
@@ -124,6 +129,11 @@ public:
virtual void play(uint startFrame, uint endFrame, int v3, bool v4);
/**
+ * Plays the movie
+ */
+ virtual void play(const Rect &rect, int v1, int v2);
+
+ /**
* Plays a sub-section of a movie
*/
virtual void playClip(const Rect &rect, uint startFrame, uint endFrame);