aboutsummaryrefslogtreecommitdiff
path: root/engines/titanic/gfx/text_control.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/titanic/gfx/text_control.h')
-rw-r--r--engines/titanic/gfx/text_control.h8
1 files changed, 6 insertions, 2 deletions
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;