diff options
Diffstat (limited to 'libs/game_bethesda/src/games/falloutnv/falloutnvmoddatacontent.h')
| -rw-r--r-- | libs/game_bethesda/src/games/falloutnv/falloutnvmoddatacontent.h | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/libs/game_bethesda/src/games/falloutnv/falloutnvmoddatacontent.h b/libs/game_bethesda/src/games/falloutnv/falloutnvmoddatacontent.h new file mode 100644 index 0000000..4effd97 --- /dev/null +++ b/libs/game_bethesda/src/games/falloutnv/falloutnvmoddatacontent.h @@ -0,0 +1,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 |
