diff options
Diffstat (limited to 'libs/game_bethesda/src/games/falloutnv/falloutnvbsainvalidation.h')
| -rw-r--r-- | libs/game_bethesda/src/games/falloutnv/falloutnvbsainvalidation.h | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/libs/game_bethesda/src/games/falloutnv/falloutnvbsainvalidation.h b/libs/game_bethesda/src/games/falloutnv/falloutnvbsainvalidation.h new file mode 100644 index 0000000..2301acf --- /dev/null +++ b/libs/game_bethesda/src/games/falloutnv/falloutnvbsainvalidation.h @@ -0,0 +1,20 @@ +#ifndef FALLOUTNVBSAINVALIDATION_H +#define FALLOUTNVBSAINVALIDATION_H + +#include "falloutnvdataarchives.h" +#include "gamebryobsainvalidation.h" + +#include <memory> + +class FalloutNVBSAInvalidation : public GamebryoBSAInvalidation +{ +public: + FalloutNVBSAInvalidation(MOBase::DataArchives* dataArchives, + MOBase::IPluginGame const* game); + +private: + virtual QString invalidationBSAName() const override; + virtual unsigned long bsaVersion() const override; +}; + +#endif // FALLOUTNVBSAINVALIDATION_H |
