1
Fork 0
mirror of https://github.com/redstrate/Astra.git synced 2025-04-21 20:27:45 +00:00
astra/launcher/core/include/sapphirelauncher.h

16 lines
No EOL
325 B
C++

#pragma once
#include <QString>
#include "launchercore.h"
class SapphireLauncher : QObject {
public:
SapphireLauncher(LauncherCore& window);
void login(QString lobbyUrl, const LoginInformation& info);
void registerAccount(QString lobbyUrl, const LoginInformation& info);
private:
LauncherCore& window;
};