#ifndef FO4LONDONSAVEGAME_H #define FO4LONDONSAVEGAME_H #include "gamebryosavegame.h" #include "windows_compat.h" class GameFallout4London; class Fallout4LondonSaveGame : public GamebryoSaveGame { public: Fallout4LondonSaveGame(QString const& fileName, GameFallout4London const* game); protected: // Fetch easy-to-access information. void fetchInformationFields(FileWrapper& file, uint32_t& saveNumber, QString& playerName, unsigned short& playerLevel, QString& playerLocation, FILETIME& creationTime) const; std::unique_ptr fetchDataFields() const override; }; #endif // FO4LONDONSAVEGAME_H