aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--engines/hdb/ai.cpp5
-rw-r--r--engines/hdb/ai.h2
2 files changed, 7 insertions, 0 deletions
diff --git a/engines/hdb/ai.cpp b/engines/hdb/ai.cpp
index 36dbcbe7cc..ca4d83c177 100644
--- a/engines/hdb/ai.cpp
+++ b/engines/hdb/ai.cpp
@@ -32,6 +32,11 @@ AI::~AI() {
delete _cine;
}
+bool AI::init() {
+ warning("STUB: AI::init required");
+ return true;
+}
+
void AI::processCines() {
bool complete, bailOut;
diff --git a/engines/hdb/ai.h b/engines/hdb/ai.h
index ee82a45e0c..549157716d 100644
--- a/engines/hdb/ai.h
+++ b/engines/hdb/ai.h
@@ -85,6 +85,8 @@ public:
AI();
~AI();
+ bool init();
+
// Cinematic Functions
void processCines();
void cineStart(bool abortable, char *abortFunc);