aboutsummaryrefslogtreecommitdiff
path: root/engines/access/amazon/amazon_game.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/access/amazon/amazon_game.h')
-rw-r--r--engines/access/amazon/amazon_game.h22
1 files changed, 21 insertions, 1 deletions
diff --git a/engines/access/amazon/amazon_game.h b/engines/access/amazon/amazon_game.h
index 33d7833670..79a74b329f 100644
--- a/engines/access/amazon/amazon_game.h
+++ b/engines/access/amazon/amazon_game.h
@@ -30,8 +30,28 @@ namespace Access {
namespace Amazon {
class AmazonEngine : public AccessEngine {
+private:
+ bool _skipStart;
+
+ /**
+ * Do title sequence
+ */
+ void doTitle();
+
+ /**
+ * Do opening sequence
+ */
+ void doOpening();
+
+ /**
+ * Do tent scene of introduction
+ */
+ void doTent();
protected:
- virtual void doTitle();
+ /**
+ * Play the game
+ */
+ virtual void playGame();
public:
AmazonEngine(OSystem *syst, const AccessGameDescription *gameDesc);