aboutsummaryrefslogtreecommitdiff
path: root/engines/wage/gui.h
diff options
context:
space:
mode:
authorEugene Sandulenko2015-12-30 18:22:46 +0100
committerEugene Sandulenko2015-12-30 18:22:46 +0100
commita712a1d80b2bf7e35d729475e9522456b6a90e27 (patch)
tree23ca3f23e161141281b1e95b379a7b20cb56fa0a /engines/wage/gui.h
parent1c3560cd65eb03efcc5db31cd62196db712af99e (diff)
downloadscummvm-rg350-a712a1d80b2bf7e35d729475e9522456b6a90e27.tar.gz
scummvm-rg350-a712a1d80b2bf7e35d729475e9522456b6a90e27.tar.bz2
scummvm-rg350-a712a1d80b2bf7e35d729475e9522456b6a90e27.zip
WAGE: Implement appendText()
Diffstat (limited to 'engines/wage/gui.h')
-rw-r--r--engines/wage/gui.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/engines/wage/gui.h b/engines/wage/gui.h
index 46899027d3..2e6cd65ad6 100644
--- a/engines/wage/gui.h
+++ b/engines/wage/gui.h
@@ -60,6 +60,7 @@ public:
void draw();
void setScene(Scene *scene);
+ void appendText(Common::String &str);
private:
void paintBorder(Graphics::Surface *g, int x, int y, int width, int height,
@@ -72,6 +73,8 @@ private:
Graphics::Surface _screen;
Scene *_scene;
bool _sceneDirty;
+
+ Common::String _out;
};
} // End of namespace Wage