aboutsummaryrefslogtreecommitdiff
path: root/queen/talk.h
diff options
context:
space:
mode:
authorDavid Eriksson2003-10-07 06:56:29 +0000
committerDavid Eriksson2003-10-07 06:56:29 +0000
commit8937a96e50c377116b63112f1ab1fd5a76ae69d8 (patch)
tree431b856dcdc5ab92edf401628a53b0ab0e620e43 /queen/talk.h
parente04d25f86d2012733a718635e4efd6b913d17bbe (diff)
downloadscummvm-rg350-8937a96e50c377116b63112f1ab1fd5a76ae69d8.tar.gz
scummvm-rg350-8937a96e50c377116b63112f1ab1fd5a76ae69d8.tar.bz2
scummvm-rg350-8937a96e50c377116b63112f1ab1fd5a76ae69d8.zip
- Added a debug stub for the selectSentence method
- Added final talk for person Joe is talking to svn-id: r10657
Diffstat (limited to 'queen/talk.h')
-rw-r--r--queen/talk.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/queen/talk.h b/queen/talk.h
index 42fdeebf73..dfeea6b128 100644
--- a/queen/talk.h
+++ b/queen/talk.h
@@ -115,6 +115,7 @@ class Talk {
int _oldSelectedSentenceIndex;
int _oldSelectedSentenceValue;
+ char _talkString[5][MAX_STRING_SIZE];
Talk(Logic *logic, Resource *resource);
~Talk();
@@ -140,6 +141,8 @@ class Talk {
//! The sentence will not be displayed again
void disableSentence(int oldLevel, int selectedSentence);
+ //! Select what to say
+ int16 selectSentence();
};