1
Fork 0
mirror of https://github.com/redstrate/Astra.git synced 2025-04-24 21:37:46 +00:00
astra/src/sapphirelauncher.h

16 lines
328 B
C
Raw Normal View History

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