mirror of
https://github.com/redstrate/Astra.git
synced 2025-04-22 20:47:45 +00:00
16 lines
No EOL
348 B
C++
16 lines
No EOL
348 B
C++
#pragma once
|
|
|
|
#include <QString>
|
|
|
|
#include "launchercore.h"
|
|
|
|
class SapphireLauncher : QObject {
|
|
public:
|
|
explicit SapphireLauncher(LauncherCore& window);
|
|
|
|
void login(const QString& lobbyUrl, const LoginInformation& info);
|
|
void registerAccount(const QString& lobbyUrl, const LoginInformation& info);
|
|
|
|
private:
|
|
LauncherCore& window;
|
|
}; |