#ifndef FALLOUTNVSAVEGAME_H #define FALLOUTNVSAVEGAME_H #include "gamebryosavegame.h" class GameFalloutNV; class FalloutNVSaveGame : public GamebryoSaveGame { public: FalloutNVSaveGame(QString const& fileName, GameFalloutNV const* game); protected: // Fetch easy-to-access information. void fetchInformationFields(FileWrapper& wrapper, uint32_t& width, uint32_t& height, uint32_t& saveNumber, QString& playerName, unsigned short& playerLevel, QString& playerLocation) const; std::unique_ptr fetchDataFields() const override; }; #endif // FALLOUTNVSAVEGAME_H