diff options
Diffstat (limited to 'libs/game_bethesda/src/games/fallout4/fallout4dataarchives.h')
| -rw-r--r-- | libs/game_bethesda/src/games/fallout4/fallout4dataarchives.h | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/libs/game_bethesda/src/games/fallout4/fallout4dataarchives.h b/libs/game_bethesda/src/games/fallout4/fallout4dataarchives.h new file mode 100644 index 0000000..c90711c --- /dev/null +++ b/libs/game_bethesda/src/games/fallout4/fallout4dataarchives.h @@ -0,0 +1,27 @@ +#ifndef FALLOUT4DATAARCHIVES_H +#define FALLOUT4DATAARCHIVES_H + +#include "gamebryodataarchives.h" + +namespace MOBase +{ +class IProfile; +} + +#include <QDir> +#include <QStringList> + +class Fallout4DataArchives : public GamebryoDataArchives +{ +public: + using GamebryoDataArchives::GamebryoDataArchives; + + virtual QStringList vanillaArchives() const override; + virtual QStringList archives(const MOBase::IProfile* profile) const override; + +private: + virtual void writeArchiveList(MOBase::IProfile* profile, + const QStringList& before) override; +}; + +#endif // FALLOUT4DATAARCHIVES_H |
