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