From 3f7fcaec5f36b9eeeeb895f3ec078fb8e60068ca Mon Sep 17 00:00:00 2001 From: Paul Gilbert Date: Tue, 13 Feb 2018 21:33:02 -0500 Subject: XEEN: Move reseting dream sequence cutscene into the engine class --- engines/xeen/swordsofxeen/swordsofxeen.cpp | 4 ++++ engines/xeen/swordsofxeen/swordsofxeen.h | 5 +++++ 2 files changed, 9 insertions(+) (limited to 'engines/xeen/swordsofxeen') diff --git a/engines/xeen/swordsofxeen/swordsofxeen.cpp b/engines/xeen/swordsofxeen/swordsofxeen.cpp index 05998ce56a..671a1bce92 100644 --- a/engines/xeen/swordsofxeen/swordsofxeen.cpp +++ b/engines/xeen/swordsofxeen/swordsofxeen.cpp @@ -39,6 +39,10 @@ void SwordsOfXeenEngine::death() { error("TODO: Swords of Xeen death screen"); } +void SwordsOfXeenEngine::dream() { + error("TODO: Swords of Xeen dream sequence, if any"); +} + void SwordsOfXeenEngine::showCutscene(const Common::String &name, int status, uint score) { _quitMode = QMODE_MENU; } diff --git a/engines/xeen/swordsofxeen/swordsofxeen.h b/engines/xeen/swordsofxeen/swordsofxeen.h index 784fba0849..2eda3dec29 100644 --- a/engines/xeen/swordsofxeen/swordsofxeen.h +++ b/engines/xeen/swordsofxeen/swordsofxeen.h @@ -53,6 +53,11 @@ public: * Show a cutscene */ virtual void showCutscene(const Common::String &name, int status, uint score); + + /** + * Dream sequence + */ + virtual void dream(); }; #define SWORDS_VM (*(::Xeen::SwordsOfXeen::SwordsOfXeenEngine *)g_vm) -- cgit v1.2.3