aboutsummaryrefslogtreecommitdiff
path: root/engines/access/access.h
diff options
context:
space:
mode:
authorStrangerke2014-08-31 02:18:02 +0200
committerStrangerke2014-08-31 02:19:05 +0200
commit9d3460e9f707b1d53534e45c19e15bbb247eba70 (patch)
treefe26110b09c5b9e121b5a6f8236de377500d0cdb /engines/access/access.h
parentb39d7df7cb754b975bcbfdb523f451f021847e72 (diff)
downloadscummvm-rg350-9d3460e9f707b1d53534e45c19e15bbb247eba70.tar.gz
scummvm-rg350-9d3460e9f707b1d53534e45c19e15bbb247eba70.tar.bz2
scummvm-rg350-9d3460e9f707b1d53534e45c19e15bbb247eba70.zip
ACCESS: Implement printText()
Diffstat (limited to 'engines/access/access.h')
-rw-r--r--engines/access/access.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/engines/access/access.h b/engines/access/access.h
index 725e1fc87f..42ba49fd5d 100644
--- a/engines/access/access.h
+++ b/engines/access/access.h
@@ -113,8 +113,6 @@ protected:
*/
void doRoom();
- void speakText(ASurface *s, Common::Array<Common::String>msgArr);
-
/**
* Support method that generates a savegame name
* @param slot Slot number
@@ -271,6 +269,12 @@ public:
void freeChar();
/**
+ * Draw a string on a given surface and update text positioning
+ */
+ void printText(ASurface *s, Common::String &msg);
+ void speakText(ASurface *s, Common::Array<Common::String>msgArr);
+
+ /**
* Load a savegame
*/
virtual Common::Error loadGameState(int slot);