blob: b8c9af5ea63ba39ec14dedffe3e3181bdb50c5c7 (
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
|
#ifndef MORROWIND_MODDATACONTENT_H
#define MORROWIND_MODDATACONTENT_H
#include <gamebryomoddatacontent.h>
#include <ifiletree.h>
class MorrowindModDataContent : public GamebryoModDataContent
{
public:
/**
*
*/
MorrowindModDataContent(MOBase::IGameFeatures const* gameFeatures)
: GamebryoModDataContent(gameFeatures)
{
// Just need to disable some contents:
m_Enabled[CONTENT_MCM] = false;
m_Enabled[CONTENT_SKYPROC] = false;
m_Enabled[CONTENT_INTERFACE] = false;
m_Enabled[CONTENT_SCRIPT] = false;
}
};
#endif // MORROWIND_MODDATACONTENT_H
|