PARALLACTION: Removal of unecessary returns and whitespace fixes to saveload.*

svn-id: r55510
This commit is contained in:
David Turner 2011-01-25 01:58:26 +00:00
parent 1a44ed588f
commit ccb1faef7e
2 changed files with 0 additions and 30 deletions

View file

@ -23,7 +23,6 @@
*
*/
#ifndef PARALLACTION_SAVELOAD_H
#define PARALLACTION_SAVELOAD_H
@ -31,9 +30,7 @@ namespace Parallaction {
struct Character;
class SaveLoad {
protected:
Common::SaveFileManager *_saveFileMan;
Common::String _saveFilePrefix;
@ -60,7 +57,6 @@ public:
};
class SaveLoad_ns : public SaveLoad {
Parallaction_ns *_vm;
protected:
@ -78,7 +74,6 @@ public:
};
class SaveLoad_br : public SaveLoad {
Parallaction_br *_vm;
virtual void doLoadGame(uint16 slot);
virtual void doSaveGame(uint16 slot, const char* name);
@ -90,7 +85,6 @@ public:
virtual void setPartComplete(const char *part);
};
} // namespace Parallaction
#endif