diff options
Diffstat (limited to 'engines/xeen/worldofxeen/darkside_cutscenes.h')
-rw-r--r-- | engines/xeen/worldofxeen/darkside_cutscenes.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/engines/xeen/worldofxeen/darkside_cutscenes.h b/engines/xeen/worldofxeen/darkside_cutscenes.h index 567b70e05f..cbd961069f 100644 --- a/engines/xeen/worldofxeen/darkside_cutscenes.h +++ b/engines/xeen/worldofxeen/darkside_cutscenes.h @@ -30,6 +30,11 @@ namespace Xeen { class XeenEngine; class DarkSideCutscenes : public Cutscenes { +protected: + /** + * Shows the Pharaoh ending screen where score text is shown + */ + void showPharaohEndText(const char *msg1, const char *msg2 = nullptr, const char *msg3 = nullptr); public: DarkSideCutscenes(XeenEngine *vm) : Cutscenes(vm) {} @@ -47,6 +52,11 @@ public: * Shows the Dark Side of Xeen ending sequence */ bool showDarkSideEnding(); + + /** + * Show the ending score + */ + void showDarkSideScore(); }; } // End of namespace Xeen |