aboutsummaryrefslogtreecommitdiff
path: root/engines/parallaction/objects.h
diff options
context:
space:
mode:
authorNicola Mettifogo2011-01-29 07:21:48 +0000
committerNicola Mettifogo2011-01-29 07:21:48 +0000
commitbcd18232ad80097f45181594628eb193700b93e0 (patch)
tree1a9cd37a3d709c4007a7b685c3a11da02c604b0c /engines/parallaction/objects.h
parente1046d3eae8207bc3c65cd6a558dd20191aede3c (diff)
downloadscummvm-rg350-bcd18232ad80097f45181594628eb193700b93e0.tar.gz
scummvm-rg350-bcd18232ad80097f45181594628eb193700b93e0.tar.bz2
scummvm-rg350-bcd18232ad80097f45181594628eb193700b93e0.zip
PARALLACTION: Cleanup dialogue code.
Hide mood and balloon winding extraction into Question and Answer objects. svn-id: r55606
Diffstat (limited to 'engines/parallaction/objects.h')
-rw-r--r--engines/parallaction/objects.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/engines/parallaction/objects.h b/engines/parallaction/objects.h
index 50a188e91b..5260dcbfe8 100644
--- a/engines/parallaction/objects.h
+++ b/engines/parallaction/objects.h
@@ -164,6 +164,7 @@ struct Answer {
Answer();
bool textIsNull();
+ int speakerMood();
};
struct Question {
@@ -175,6 +176,8 @@ struct Question {
Question(const Common::String &name);
~Question();
bool textIsNull();
+ int speakerMood();
+ int balloonWinding();
};
struct Dialogue {