1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
#ifndef SKYRIMSE_MODATACHECKER_H
#define SKYRIMSE_MODATACHECKER_H
#include <gamebryomoddatachecker.h>
class SkyrimSEModDataChecker : 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",
"CalienteTools", "NetScriptFramework",
"shadersfx", "Nemesis_Engine",
"Platform", "grass",
"LightPlacer", "mainmenuwallpapers",
"MainMenuVideo", "PBRMaterialObjects",
"PBRNifPatcher", "PBRTextureSets"};
return result;
}
virtual const FileNameSet& possibleFileExtensions() const override
{
static FileNameSet result{"esp", "esm", "esl", "bsa", "modgroups", "ini"};
return result;
}
};
#endif // SKYRIMSE_MODATACHECKER_H
|