diff options
| author | Jeremy Rimpo <jeremy.rimpo@servermonkey.com> | 2024-10-03 02:46:53 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-10-03 09:46:53 +0200 |
| commit | 19fae10b2bd20b8f5bdf1012f674b60bb9bd43fa (patch) | |
| tree | fc7671ed24ce6cdec0157376c729e1bc474bd0c9 /src/pluginlist.h | |
| parent | 7ed06a77c1119b6ee7cd6d32893339465197f420 (diff) | |
Starfield Updates: Shattered Space & Blueprint Support (#2131)
---------
Co-authored-by: Jonathan Feenstra <26406078+JonathanFeenstra@users.noreply.github.com>
Diffstat (limited to 'src/pluginlist.h')
| -rw-r--r-- | src/pluginlist.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/pluginlist.h b/src/pluginlist.h index 0588b4d7..41a7d634 100644 --- a/src/pluginlist.h +++ b/src/pluginlist.h @@ -242,6 +242,7 @@ public: bool isMasterFlagged(const QString& name) const; bool isMediumFlagged(const QString& name) const; bool isLightFlagged(const QString& name) const; + bool isBlueprintFlagged(const QString& name) const; bool hasNoRecords(const QString& name) const; QString author(const QString& name) const; @@ -320,7 +321,7 @@ private: ESPInfo(const QString& name, bool forceLoaded, bool forceEnabled, bool forceDisabled, const QString& originName, const QString& fullPath, bool hasIni, std::set<QString> archives, bool lightSupported, - bool mediumSupported); + bool mediumSupported, bool blueprintSupported); QString name; QString fullPath; @@ -338,6 +339,7 @@ private: bool isMasterFlagged; bool isMediumFlagged; bool isLightFlagged; + bool isBlueprintFlagged; bool hasNoRecords; bool modSelected; QString author; |
