aboutsummaryrefslogtreecommitdiff
path: root/engines/titanic/gfx
diff options
context:
space:
mode:
Diffstat (limited to 'engines/titanic/gfx')
-rw-r--r--engines/titanic/gfx/text_control.cpp1
-rw-r--r--engines/titanic/gfx/text_control.h8
2 files changed, 7 insertions, 2 deletions
diff --git a/engines/titanic/gfx/text_control.cpp b/engines/titanic/gfx/text_control.cpp
index f731dbb340..d1d2e1c530 100644
--- a/engines/titanic/gfx/text_control.cpp
+++ b/engines/titanic/gfx/text_control.cpp
@@ -21,6 +21,7 @@
*/
#include "titanic/gfx/text_control.h"
+#include "titanic/support/strings.h"
#include "titanic/titanic.h"
namespace Titanic {
diff --git a/engines/titanic/gfx/text_control.h b/engines/titanic/gfx/text_control.h
index d4ef19a7cf..ddcb791062 100644
--- a/engines/titanic/gfx/text_control.h
+++ b/engines/titanic/gfx/text_control.h
@@ -24,18 +24,22 @@
#define TITANIC_TEXT_CONTROL_H
#include "common/keyboard.h"
-#include "titanic/support/simple_file.h"
#include "titanic/support/screen_manager.h"
-#include "titanic/support/text_cursor.h"
+#include "titanic/support/strings.h"
namespace Titanic {
+class CScreenManager;
+class CTextCursor;
+class SimpleFile;
+
class CTextControl {
struct ArrayEntry {
CString _line;
CString _rgb;
CString _string3;
};
+
private:
Common::Array<ArrayEntry> _array;
CString _lines;