blob: a9cce03cf075fc556b3ca372e84e5484b22ba1e6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#ifndef ENDERALSE_MODDATACONTENT_H
#define ENDERALSE_MODDATACONTENT_H
#include <gamebryomoddatacontent.h>
#include <ifiletree.h>
class EnderalSEModDataContent : public GamebryoModDataContent
{
public:
/**
*
*/
EnderalSEModDataContent(MOBase::IGameFeatures* gameFeatures)
: GamebryoModDataContent(gameFeatures)
{
// Just need to disable some contents:
m_Enabled[CONTENT_SKYPROC] = false;
}
};
#endif // SKYRIMSE_MODDATACONTENT_H
|