aboutsummaryrefslogtreecommitdiff
path: root/engines/avalanche/avalanche.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/avalanche/avalanche.h')
-rw-r--r--engines/avalanche/avalanche.h10
1 files changed, 8 insertions, 2 deletions
diff --git a/engines/avalanche/avalanche.h b/engines/avalanche/avalanche.h
index 2f20393faf..a027dc5988 100644
--- a/engines/avalanche/avalanche.h
+++ b/engines/avalanche/avalanche.h
@@ -111,10 +111,16 @@ public:
bool hasFeature(EngineFeature f) const;
const char *getCopyrightString() const;
- void updateEvents();
- bool getEvent(Common::Event &event); // A warpper around _eventMan->pollEvent(), se we can use it in Scrolls::normscroll() for example.
+ virtual bool canSaveGameStateCurrently();
+ Common::Error saveGameState(int slot, const Common::String &desc);
+ virtual bool canLoadGameStateCurrently();
+ Common::Error loadGameState(int slot, const Common::String &desc);
+
+
+ void updateEvents();
+ bool getEvent(Common::Event &event); // A warpper around _eventMan->pollEvent(), se we can use it in Scrolls::normscroll() for example.
Common::Point getMousePos();
protected: