diff options
| author | Mikaƫl Capelle <capelle.mikael@gmail.com> | 2024-06-09 12:18:17 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-06-09 12:18:17 +0200 |
| commit | 88c386d74d7d94ec16d4d84ed674eb51e31647ac (patch) | |
| tree | adf0b2537f12d11d8df77f68a84926d15b063554 /src/profilesdialog.h | |
| parent | c43535f5bcf1043c3b9c00c77967267cf1acf60f (diff) | |
Refactoring of game features for better management. (#2043)
Diffstat (limited to 'src/profilesdialog.h')
| -rw-r--r-- | src/profilesdialog.h | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/src/profilesdialog.h b/src/profilesdialog.h index dc8329a2..1a2a36e2 100644 --- a/src/profilesdialog.h +++ b/src/profilesdialog.h @@ -20,13 +20,12 @@ along with Mod Organizer. If not, see <http://www.gnu.org/licenses/>. #ifndef PROFILESDIALOG_H #define PROFILESDIALOG_H +#include <QObject> + #include "tutorabledialog.h" -class Profile; -class OrganizerCore; class QListWidget; class QListWidgetItem; -#include <QObject> class QString; namespace Ui @@ -39,6 +38,10 @@ namespace MOBase class IPluginGame; } +class GameFeatures; +class Profile; +class OrganizerCore; + /** * @brief Dialog that can be used to create/delete/modify profiles **/ @@ -126,6 +129,7 @@ private slots: private: Ui::ProfilesDialog* ui; + GameFeatures& m_GameFeatures; QListWidget* m_ProfilesList; bool m_FailState; MOBase::IPluginGame const* m_Game; |
