aboutsummaryrefslogtreecommitdiff
path: root/libs/game_bethesda/src/games/enderalse/enderalsemoddatachecker.h
blob: 23368197a57598b27f933038658de623c65919b9 (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 ENDERALSE_MODATACHECKER_H
#define ENDERALSE_MODATACHECKER_H

#include <gamebryomoddatachecker.h>

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

#endif  // SKYRIMSE_MODATACHECKER_H