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