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