diff options
Diffstat (limited to 'libs/game_bethesda/src/games/falloutnv/falloutnvmoddatachecker.h')
| -rw-r--r-- | libs/game_bethesda/src/games/falloutnv/falloutnvmoddatachecker.h | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/libs/game_bethesda/src/games/falloutnv/falloutnvmoddatachecker.h b/libs/game_bethesda/src/games/falloutnv/falloutnvmoddatachecker.h new file mode 100644 index 0000000..02c5c7f --- /dev/null +++ b/libs/game_bethesda/src/games/falloutnv/falloutnvmoddatachecker.h @@ -0,0 +1,51 @@ +#ifndef FALLOUTNV_MODATACHECKER_H +#define FALLOUTNV_MODATACHECKER_H + +#include <gamebryomoddatachecker.h> + +class FalloutNVModDataChecker : public GamebryoModDataChecker +{ +public: + using GamebryoModDataChecker::GamebryoModDataChecker; + +protected: + virtual const FileNameSet& possibleFolderNames() const override + { + static FileNameSet result{"fonts", + "interface", + "menus", + "meshes", + "music", + "scripts", + "shaders", + "sound", + "strings", + "textures", + "trees", + "video", + "facegen", + "materials", + "nvse", + "distantlod", + "asi", + "Tools", + "MCM", + "distantland", + "mits", + "dllplugins", + "CalienteTools", + "shadersfx", + "config", + "KEYWORDS", + "BaseObjectSwapper", + "RaceMenuPresets"}; + return result; + } + virtual const FileNameSet& possibleFileExtensions() const override + { + static FileNameSet result{"esp", "esm", "bsa", "modgroups", "ini"}; + return result; + } +}; + +#endif // FALLOUTNV_MODATACHECKER_H |
