mirror of
https://github.com/redstrate/Astra.git
synced 2025-04-21 20:27:45 +00:00
20 lines
No EOL
487 B
C++
20 lines
No EOL
487 B
C++
// SPDX-FileCopyrightText: 2023 Joshua Goins <josh@redstrate.com>
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
#pragma once
|
|
|
|
#include <QString>
|
|
|
|
#include "launchercore.h"
|
|
|
|
class SapphireLauncher : QObject
|
|
{
|
|
public:
|
|
explicit SapphireLauncher(LauncherCore &window, QObject *parent = nullptr);
|
|
|
|
void login(const QString &lobbyUrl, const LoginInformation &info);
|
|
void registerAccount(const QString &lobbyUrl, const LoginInformation &info);
|
|
|
|
private:
|
|
LauncherCore &window;
|
|
}; |