diff options
| author | Jeremy Rimpo <jrim@rimpo.org> | 2017-12-13 03:11:03 -0600 |
|---|---|---|
| committer | Jeremy Rimpo <jrim@rimpo.org> | 2017-12-13 03:11:03 -0600 |
| commit | 083d1078753698b5ff347d91aa17219fd1e1cb5a (patch) | |
| tree | 17772176264e83d1147c804897bb82ae2a8efdca /src/modinfo.h | |
| parent | 2226a483d1415a315d7b558b0e2dc9919dfa858b (diff) | |
A number of improvements and fixes
* Move diagnostics tab to un-break tutorials targeting tab 3
* Restrict order locking for force-enabled plugins
* Cascade locked positions in the case of a conflict
* Should remove existing invalid locks
* Add some info to primary plugins in plugin list
* Differentiate plugin names for DLC and CC content
Diffstat (limited to 'src/modinfo.h')
| -rw-r--r-- | src/modinfo.h | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src/modinfo.h b/src/modinfo.h index c62df549..0bdf6e43 100644 --- a/src/modinfo.h +++ b/src/modinfo.h @@ -101,6 +101,13 @@ public: ENDORSED_NEVER
};
+ enum EModType {
+ MOD_DEFAULT,
+ MOD_DLC,
+ MOD_CC
+ };
+
+
public:
/**
@@ -189,7 +196,7 @@ public: * @param bsaNames names of archives
* @return a new mod
*/
- static ModInfo::Ptr createFromPlugin(const QString &modName, const QString &espName, const QStringList &bsaNames, MOShared::DirectoryEntry **directoryStructure);
+ static ModInfo::Ptr createFromPlugin(const QString &modName, const QString &espName, const QStringList &bsaNames, ModInfo::EModType modType, MOShared::DirectoryEntry **directoryStructure);
/**
* @brief retieve a name for one of the CONTENT_ enums
|
