diff options
Diffstat (limited to 'saga/interface.h')
-rw-r--r-- | saga/interface.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/saga/interface.h b/saga/interface.h index 57dde525b5..8690d1a1ee 100644 --- a/saga/interface.h +++ b/saga/interface.h @@ -27,6 +27,7 @@ #define SAGA_INTERFACE_H__ #include "common/file.h" +#include "common/savefile.h" #include "saga/sprite.h" #include "saga/script.h" @@ -205,8 +206,8 @@ public: PanelButton *verbHitTest(const Point& mousePoint){ return _mainPanel.hitTest(mousePoint, kPanelButtonVerb); } - void saveState(Common::File& out); - void loadState(Common::File& in); + void saveState(Common::OutSaveFile *out); + void loadState(Common::InSaveFile *in); private: void handleMainUpdate(const Point& mousePoint); // main panel update void handleMainClick(const Point& mousePoint); // main panel click |