aboutsummaryrefslogtreecommitdiff
path: root/libs/game_bethesda/src/games/fallout3/fallout3moddatachecker.h
diff options
context:
space:
mode:
Diffstat (limited to 'libs/game_bethesda/src/games/fallout3/fallout3moddatachecker.h')
-rw-r--r--libs/game_bethesda/src/games/fallout3/fallout3moddatachecker.h31
1 files changed, 31 insertions, 0 deletions
diff --git a/libs/game_bethesda/src/games/fallout3/fallout3moddatachecker.h b/libs/game_bethesda/src/games/fallout3/fallout3moddatachecker.h
new file mode 100644
index 0000000..0051137
--- /dev/null
+++ b/libs/game_bethesda/src/games/fallout3/fallout3moddatachecker.h
@@ -0,0 +1,31 @@
+#ifndef FALLOUT3_MODATACHECKER_H
+#define FALLOUT3_MODATACHECKER_H
+
+#include <gamebryomoddatachecker.h>
+
+class Fallout3ModDataChecker : 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", "fose", "distantlod",
+ "asi", "Tools", "MCM", "distantland",
+ "mits", "dllplugins", "CalienteTools", "NetScriptFramework",
+ "shadersfx"};
+ return result;
+ }
+ virtual const FileNameSet& possibleFileExtensions() const override
+ {
+ static FileNameSet result{"esp", "esm", "bsa", "modgroups", "ini"};
+ return result;
+ }
+};
+
+#endif // FALLOUT3_MODATACHECKER_H