aboutsummaryrefslogtreecommitdiff
path: root/engines/tsage/converse.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/tsage/converse.h')
-rw-r--r--engines/tsage/converse.h11
1 files changed, 9 insertions, 2 deletions
diff --git a/engines/tsage/converse.h b/engines/tsage/converse.h
index d9cc07cf82..8687913594 100644
--- a/engines/tsage/converse.h
+++ b/engines/tsage/converse.h
@@ -31,7 +31,7 @@
namespace tSage {
-class StripCallback: public EventHandler {
+class StripCallback: public Action {
public:
virtual void stripCallback(int v) = 0;
};
@@ -144,6 +144,13 @@ public:
virtual Common::String getClassName() { return "SpeakerQText"; }
};
+class SpeakerMText: public ScreenSpeaker {
+public:
+ SpeakerMText();
+
+ virtual Common::String getClassName() { return "SpeakerMText"; }
+};
+
class SpeakerAction: public Action {
public:
virtual void signal();
@@ -222,7 +229,7 @@ public:
_highlightColour = highlightColour;
}
void setFontNumber(int fontNum) { _fontNumber = fontNum; }
- int execute(const StringArray &choiceList);
+ int execute(const Common::StringArray &choiceList);
virtual void draw();
};