diff options
Diffstat (limited to 'libs/game_bethesda/src/games/skyrim/skyrimmoddatachecker.h')
| -rw-r--r-- | libs/game_bethesda/src/games/skyrim/skyrimmoddatachecker.h | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/libs/game_bethesda/src/games/skyrim/skyrimmoddatachecker.h b/libs/game_bethesda/src/games/skyrim/skyrimmoddatachecker.h new file mode 100644 index 0000000..4de6d6c --- /dev/null +++ b/libs/game_bethesda/src/games/skyrim/skyrimmoddatachecker.h @@ -0,0 +1,50 @@ +#ifndef SKYRIM_MODATACHECKER_H +#define SKYRIM_MODATACHECKER_H + +#include <gamebryomoddatachecker.h> + +class SkyrimModDataChecker : 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", + "skse", + "distantlod", + "asi", + "Tools", + "MCM", + "distantland", + "mits", + "dllplugins", + "SkyProc Patchers", + "CalienteTools", + "NetScriptFramework", + "shadersfx", + "Nemesis_Engine"}; + return result; + } + virtual const FileNameSet& possibleFileExtensions() const override + { + static FileNameSet result{"esp", "esm", "bsa", "modgroups", "ini"}; + return result; + } +}; + +#endif // SKYRIM_MODATACHECKER_H |
