aboutsummaryrefslogtreecommitdiff
path: root/libs/game_bethesda/src/games/nehrim/nehrimmoddatacontent.h
blob: c640377cb0c6fb15f8f5ae82d7b8ea52bc0a9757 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#ifndef NEHRIM_MODDATACONTENT_H
#define NEHRIM_MODDATACONTENT_H

#include <gamebryomoddatacontent.h>
#include <ifiletree.h>

class NehrimModDataContent : public GamebryoModDataContent
{
public:
  /**
   *
   */
  NehrimModDataContent(const MOBase::IGameFeatures* gameFeatures)
      : GamebryoModDataContent(gameFeatures)
  {
    // Just need to disable some contents:
    m_Enabled[CONTENT_MCM]     = false;
    m_Enabled[CONTENT_SKYPROC] = false;
  }
};

#endif  // NEHRIM_MODDATACONTENT_H