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