aboutsummaryrefslogtreecommitdiff
path: root/libs/game_bethesda/src/games/starfield/starfieldmoddatachecker.h
diff options
context:
space:
mode:
Diffstat (limited to 'libs/game_bethesda/src/games/starfield/starfieldmoddatachecker.h')
-rw-r--r--libs/game_bethesda/src/games/starfield/starfieldmoddatachecker.h29
1 files changed, 29 insertions, 0 deletions
diff --git a/libs/game_bethesda/src/games/starfield/starfieldmoddatachecker.h b/libs/game_bethesda/src/games/starfield/starfieldmoddatachecker.h
new file mode 100644
index 0000000..13c1fcc
--- /dev/null
+++ b/libs/game_bethesda/src/games/starfield/starfieldmoddatachecker.h
@@ -0,0 +1,29 @@
+#ifndef STARFIELD_MODATACHECKER_H
+#define STARFIELD_MODATACHECKER_H
+
+#include <gamebryomoddatachecker.h>
+
+class StarfieldModDataChecker : public GamebryoModDataChecker
+{
+public:
+ using GamebryoModDataChecker::GamebryoModDataChecker;
+
+protected:
+ virtual const FileNameSet& possibleFolderNames() const override
+ {
+ static FileNameSet result{
+ "interface", "meshes", "geometries", "music", "scripts", "sound",
+ "strings", "textures", "trees", "video", "materials", "sfse",
+ "distantlod", "asi", "Tools", "MCM", "distantland", "mits",
+ "dllplugins", "CalienteTools", "shadersfx", "aaf"};
+ return result;
+ }
+ virtual const FileNameSet& possibleFileExtensions() const override
+ {
+ static FileNameSet result{"esp", "esm", "esl", "ba2",
+ "modgroups", "ini", "csg", "cdx"};
+ return result;
+ }
+};
+
+#endif // STARFIELD_MODATACHECKER_H