mirror of
https://github.com/redstrate/Astra.git
synced 2025-04-21 20:27: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.
17 lines
No EOL
375 B
C++
17 lines
No EOL
375 B
C++
#pragma once
|
|
|
|
#include <QString>
|
|
|
|
#include "launchercore.h"
|
|
|
|
class SapphireLauncher : QObject
|
|
{
|
|
public:
|
|
explicit SapphireLauncher(LauncherCore &window, QObject *parent = nullptr);
|
|
|
|
void login(const QString &lobbyUrl, const LoginInformation &info);
|
|
void registerAccount(const QString &lobbyUrl, const LoginInformation &info);
|
|
|
|
private:
|
|
LauncherCore &window;
|
|
}; |