aboutsummaryrefslogtreecommitdiff
path: root/engines/wintermute/video/video_subtitle.h
diff options
context:
space:
mode:
authorTobia Tesan2014-02-02 22:26:29 +0100
committerTobia Tesan2014-10-15 19:28:21 +0200
commitcc175b5af4e2e9117f1313e38304fa9343b0d095 (patch)
tree5ec486e25d50d3a241077a5903b012d046850e5d /engines/wintermute/video/video_subtitle.h
parent5f9febee3d5a103eadc71b50d02d9eb548c0e97f (diff)
downloadscummvm-rg350-cc175b5af4e2e9117f1313e38304fa9343b0d095.tar.gz
scummvm-rg350-cc175b5af4e2e9117f1313e38304fa9343b0d095.tar.bz2
scummvm-rg350-cc175b5af4e2e9117f1313e38304fa9343b0d095.zip
WINTERMUTE: Import subtitle code from WME1
Diffstat (limited to 'engines/wintermute/video/video_subtitle.h')
-rw-r--r--engines/wintermute/video/video_subtitle.h49
1 files changed, 49 insertions, 0 deletions
diff --git a/engines/wintermute/video/video_subtitle.h b/engines/wintermute/video/video_subtitle.h
new file mode 100644
index 0000000000..0b3d591f6d
--- /dev/null
+++ b/engines/wintermute/video/video_subtitle.h
@@ -0,0 +1,49 @@
+/* ScummVM - Graphic Adventure Engine
+ *
+ * ScummVM is the legal property of its developers, whose names
+ * are too numerous to list here. Please refer to the COPYRIGHT
+ * file distributed with this source distribution.
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+ *
+ */
+
+/*
+ * This file is based on Wintermute Engine
+ * http://dead-code.org/redir.php?target=wme
+ * Copyright (c) 2011 Jan Nedoma
+ */
+
+#ifndef WINTERMUTE_VIDSUBTITLE_H
+#define WINTERMUTE_VIDSUBTITLE_H
+
+#include "engines/wintermute/base/base.h"
+
+namespace Wintermute {
+
+class CVidSubtitle : public BaseClass
+{
+public:
+ long m_EndFrame;
+ long m_StartFrame;
+ char* m_Text;
+ CVidSubtitle(BaseGame* inGame);
+ CVidSubtitle(BaseGame* inGame, char* Text, long StartFrame, long EndFrame);
+ virtual ~CVidSubtitle();
+
+};
+}
+
+#endif