From 717b5ac389ea15350d32f813a3f03d908de0ab06 Mon Sep 17 00:00:00 2001 From: Jonathan Feenstra <26406078+JonathanFeenstra@users.noreply.github.com> Date: Sun, 11 Jan 2026 12:36:07 +0100 Subject: Add instanceName and profiles methods to plugin API (#2321) --- src/organizercore.h | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'src/organizercore.h') diff --git a/src/organizercore.h b/src/organizercore.h index d4ce1500..22c4f19a 100644 --- a/src/organizercore.h +++ b/src/organizercore.h @@ -45,6 +45,9 @@ class GameFeatures; class PluginContainer; class DirectoryRefresher; +#include +#include + namespace MOBase { template @@ -270,6 +273,9 @@ public: Profile* currentProfile() const { return m_CurrentProfile.get(); } void setCurrentProfile(const QString& profileName); + QStringList profileNames() const; + std::shared_ptr getProfile(const QString& profileName) const; + std::vector enabledArchives(); MOBase::Version getVersion() const { return m_Updater.getVersion(); } -- cgit v1.3.1