aboutsummaryrefslogtreecommitdiff
path: root/engines/macventure/macventure.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/macventure/macventure.cpp')
-rw-r--r--engines/macventure/macventure.cpp18
1 files changed, 18 insertions, 0 deletions
diff --git a/engines/macventure/macventure.cpp b/engines/macventure/macventure.cpp
index 5660fde16c..19021278cb 100644
--- a/engines/macventure/macventure.cpp
+++ b/engines/macventure/macventure.cpp
@@ -87,6 +87,24 @@ Common::Error MacVentureEngine::run() {
return Common::kNoError;
}
+void MacVentureEngine::requestQuit() {
+ _shouldQuit = true;
+}
+
+void MacVentureEngine::requestUnpause() {
+ _paused = false;
+}
+
+// Data retrieval
+
+bool MacVentureEngine::isPaused() {
+ return _paused;
+}
+
+Common::String MacVentureEngine::getCommandsPausedString() {
+ return Common::String("Click to continue");
+}
+
void MacVentureEngine::processEvents() {
Common::Event event;