From 3e88827c4cea00dcc9f0fe90fc4a173c2b821b41 Mon Sep 17 00:00:00 2001 From: Simei Yin Date: Tue, 29 May 2018 22:59:52 +0200 Subject: SLUDGE: Move function/variable load/save functions to related files --- engines/sludge/loadsave.h | 15 --------------- 1 file changed, 15 deletions(-) (limited to 'engines/sludge/loadsave.h') diff --git a/engines/sludge/loadsave.h b/engines/sludge/loadsave.h index 54e0577796..4077950cfb 100644 --- a/engines/sludge/loadsave.h +++ b/engines/sludge/loadsave.h @@ -24,25 +24,10 @@ namespace Sludge { -struct LoadedFunction; -struct Variable; -struct VariableStack; - bool handleSaveLoad(); - bool saveGame(const Common::String &fname); bool loadGame(const Common::String &fname); -bool saveVariable(Variable *from, Common::WriteStream *stream); -bool loadVariable(Variable *to, Common::SeekableReadStream *stream); - -VariableStack *loadStack(Common::SeekableReadStream *stream, VariableStack **last); -bool saveStackRef(StackHandler *vs, Common::WriteStream *stream); -StackHandler *loadStackRef(Common::SeekableReadStream *stream); - -LoadedFunction *loadFunction(Common::SeekableReadStream *stream); -void saveFunction(LoadedFunction *fun, Common::WriteStream *stream); - } // End of namespace Sludge #endif -- cgit v1.2.3