mirror of
https://github.com/redstrate/Astra.git
synced 2025-04-22 20:47:45 +00:00
Giant commit overhauling the interface to use KDE's Kirigami framework, which is based on Qt Quick. The logic is all but rewritten, allowing accounts to be separate from profiles.
23 lines
No EOL
380 B
C++
23 lines
No EOL
380 B
C++
#pragma once
|
|
|
|
#include <QObject>
|
|
#include <QString>
|
|
|
|
class LauncherCore;
|
|
class Profile;
|
|
|
|
class GameInstaller : public QObject
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
GameInstaller(LauncherCore &launcher, Profile &profile, QObject *parent = nullptr);
|
|
|
|
Q_INVOKABLE void installGame();
|
|
|
|
Q_SIGNALS:
|
|
void installFinished();
|
|
|
|
private:
|
|
LauncherCore &m_launcher;
|
|
Profile &m_profile;
|
|
}; |