aboutsummaryrefslogtreecommitdiff
path: root/libs/game_bethesda/src/games/skyrimvr/skyrimvrmoddatachecker.h
blob: f44d941affe3cea444a8ead6959f721c64b3fc0c (plain)
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
#ifndef SKYRIMVR_MODATACHECKER_H
#define SKYRIMVR_MODATACHECKER_H

#include <gamebryomoddatachecker.h>

class SkyrimVRModDataChecker : 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", "LightPlacer"};
    return result;
  }
  virtual const FileNameSet& possibleFileExtensions() const override
  {
    static FileNameSet result{"esp", "esm", "bsa", "modgroups", "ini"};
    return result;
  }
};

#endif  // SKYRIMVR_MODATACHECKER_H