mirror of
https://github.com/redstrate/Astra.git
synced 2025-04-24 05:17:46 +00:00
16 lines
328 B
C
16 lines
328 B
C
![]() |
#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;
|
||
|
};
|