1
Fork 0
mirror of https://github.com/redstrate/Astra.git synced 2025-04-24 13:27:45 +00:00
astra/src/sapphirelauncher.h
2021-11-01 09:54:58 -04:00

16 lines
No EOL
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;
};