aboutsummaryrefslogtreecommitdiff
path: root/common/system.h
diff options
context:
space:
mode:
Diffstat (limited to 'common/system.h')
-rw-r--r--common/system.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/common/system.h b/common/system.h
index 13a1fab3fd..296fb072c8 100644
--- a/common/system.h
+++ b/common/system.h
@@ -24,6 +24,7 @@
#define COMMON_SYSTEM_H
#include "scummsys.h"
+#include "savefile.h"
class Timer;
@@ -180,6 +181,12 @@ public:
g = (((color>>5)&0x3F) << 2);
b = ((color&0x1F) << 3);
}
+
+ // Savefile management
+ virtual SaveFileManager *get_savefile_manager()
+ {
+ return new SaveFileManager();
+ }
};