From 19fae10b2bd20b8f5bdf1012f674b60bb9bd43fa Mon Sep 17 00:00:00 2001 From: Jeremy Rimpo Date: Thu, 3 Oct 2024 02:46:53 -0500 Subject: Starfield Updates: Shattered Space & Blueprint Support (#2131) --------- Co-authored-by: Jonathan Feenstra <26406078+JonathanFeenstra@users.noreply.github.com> --- src/pluginlist.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src/pluginlist.h') 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 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; -- cgit v1.3.1