1
Fork 0
mirror of https://github.com/redstrate/Astra.git synced 2025-04-22 12:47:44 +00:00
astra/launcher/core/include/sapphirelauncher.h

16 lines
348 B
C
Raw Normal View History

2021-11-01 09:54:58 -04:00
#pragma once
#include <QString>
#include "launchercore.h"
2021-11-01 09:54:58 -04:00
class SapphireLauncher : QObject {
public:
2022-09-05 17:26:26 -04:00
explicit SapphireLauncher(LauncherCore& window);
2021-11-01 09:54:58 -04:00
2022-09-05 17:26:26 -04:00
void login(const QString& lobbyUrl, const LoginInformation& info);
void registerAccount(const QString& lobbyUrl, const LoginInformation& info);
2021-11-01 09:54:58 -04:00
private:
LauncherCore& window;
2021-11-01 09:54:58 -04:00
};