aboutsummaryrefslogtreecommitdiff
path: root/engines/titanic/true_talk/tt_sentence.h
diff options
context:
space:
mode:
authorPaul Gilbert2016-05-17 22:36:33 -0400
committerPaul Gilbert2016-07-15 19:12:53 -0400
commitc762308bff46ccb900fa68fc40e72e235c862d89 (patch)
tree04cdf3edfbaa2e359872f09cf1ca0dbd23903234 /engines/titanic/true_talk/tt_sentence.h
parent5b42ae357ebdf5fd2665351a41127fc76167beb5 (diff)
downloadscummvm-rg350-c762308bff46ccb900fa68fc40e72e235c862d89.tar.gz
scummvm-rg350-c762308bff46ccb900fa68fc40e72e235c862d89.tar.bz2
scummvm-rg350-c762308bff46ccb900fa68fc40e72e235c862d89.zip
TITANIC: Implement TTsentence copy
Diffstat (limited to 'engines/titanic/true_talk/tt_sentence.h')
-rw-r--r--engines/titanic/true_talk/tt_sentence.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/engines/titanic/true_talk/tt_sentence.h b/engines/titanic/true_talk/tt_sentence.h
index 784177dd3a..4980f2439c 100644
--- a/engines/titanic/true_talk/tt_sentence.h
+++ b/engines/titanic/true_talk/tt_sentence.h
@@ -25,6 +25,7 @@
#include "titanic/true_talk/tt_npc_script.h"
#include "titanic/true_talk/tt_room_script.h"
+#include "titanic/true_talk/tt_sentence_node.h"
#include "titanic/true_talk/tt_string.h"
namespace Titanic {
@@ -59,7 +60,7 @@ private:
int _inputCtr;
int _field34;
int _field38;
- int _field4C;
+ TTsentenceNode *_nodesP;
TTroomScript *_roomScript;
TTnpcScript *_npcScript;
int _field58;
@@ -79,6 +80,8 @@ public:
TTsentence(const TTsentence *src);
void set38(int v);
+
+ int getStatus() const { return _status; }
};
} // End of namespace Titanic