aboutsummaryrefslogtreecommitdiff
path: root/engines/wintermute/video/video_subtitle.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/wintermute/video/video_subtitle.h')
-rw-r--r--engines/wintermute/video/video_subtitle.h11
1 files changed, 7 insertions, 4 deletions
diff --git a/engines/wintermute/video/video_subtitle.h b/engines/wintermute/video/video_subtitle.h
index 6d629b34d0..5df1348465 100644
--- a/engines/wintermute/video/video_subtitle.h
+++ b/engines/wintermute/video/video_subtitle.h
@@ -35,12 +35,15 @@ namespace Wintermute {
class VideoSubtitle : public BaseClass {
public:
+ VideoSubtitle(BaseGame *inGame);
+ VideoSubtitle(BaseGame *inGame, char *text, const long &startFrame, const long &endFrame);
+ long getEndFrame();
+ long getStartFrame();
+ Common::String getText();
+private:
long _endFrame;
long _startFrame;
- char *_text;
- VideoSubtitle(BaseGame *inGame);
- VideoSubtitle(BaseGame *inGame, char *text, long startFrame, long endFrame);
- virtual ~VideoSubtitle();
+ Common::String _text;
};
}