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