aboutsummaryrefslogtreecommitdiff
path: root/gui/message.h
diff options
context:
space:
mode:
Diffstat (limited to 'gui/message.h')
-rw-r--r--gui/message.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/gui/message.h b/gui/message.h
index 136d96be98..5b5c3ccea7 100644
--- a/gui/message.h
+++ b/gui/message.h
@@ -23,13 +23,18 @@
#include "dialog.h"
#include "common/str.h"
+#include "common/list.h"
class MessageDialog : public Dialog {
typedef ScummVM::String String;
+ typedef ScummVM::StringList StringList;
public:
MessageDialog(NewGui *gui, const String &message);
protected:
+ StringList _lines;
+
+ int addLine(const char *line, int size);
};
#endif