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

16 lines
325 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:
SapphireLauncher(LauncherCore& window);
2021-11-01 09:54:58 -04:00
void login(QString lobbyUrl, const LoginInformation& info);
void registerAccount(QString lobbyUrl, const LoginInformation& info);
private:
LauncherCore& window;
2021-11-01 09:54:58 -04:00
};