#ifndef FALLOUTNV_MODDATACONTENT_H #define FALLOUTNV_MODDATACONTENT_H #include #include 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