aboutsummaryrefslogtreecommitdiff
path: root/libs/game_bethesda/src/games/morrowind/morrowindmoddatachecker.h
diff options
context:
space:
mode:
Diffstat (limited to 'libs/game_bethesda/src/games/morrowind/morrowindmoddatachecker.h')
-rw-r--r--libs/game_bethesda/src/games/morrowind/morrowindmoddatachecker.h26
1 files changed, 26 insertions, 0 deletions
diff --git a/libs/game_bethesda/src/games/morrowind/morrowindmoddatachecker.h b/libs/game_bethesda/src/games/morrowind/morrowindmoddatachecker.h
new file mode 100644
index 0000000..bd158e0
--- /dev/null
+++ b/libs/game_bethesda/src/games/morrowind/morrowindmoddatachecker.h
@@ -0,0 +1,26 @@
+#ifndef MORROWIND_MODATACHECKER_H
+#define MORROWIND_MODATACHECKER_H
+
+#include <gamebryomoddatachecker.h>
+
+class MorrowindModDataChecker : public GamebryoModDataChecker
+{
+public:
+ using GamebryoModDataChecker::GamebryoModDataChecker;
+
+protected:
+ virtual const FileNameSet& possibleFolderNames() const override
+ {
+ static FileNameSet result{"fonts", "meshes", "music", "shaders", "sound",
+ "textures", "video", "mwse", "distantland", "mits",
+ "icons", "bookart", "splash", "animations"};
+ return result;
+ }
+ virtual const FileNameSet& possibleFileExtensions() const override
+ {
+ static FileNameSet result{"esp", "esm", "bsa", "modgroups"};
+ return result;
+ }
+};
+
+#endif // MORROWIND_MODATACHECKER_H