mirror of
https://github.com/redstrate/Astra.git
synced 2025-04-20 11:47:46 +00:00
23 lines
No EOL
443 B
C++
23 lines
No EOL
443 B
C++
#pragma once
|
|
|
|
#include <QProgressDialog>
|
|
|
|
class SquareLauncher;
|
|
class LauncherCore;
|
|
struct LoginInformation;
|
|
|
|
class SquareBoot : public QObject {
|
|
Q_OBJECT
|
|
public:
|
|
SquareBoot(LauncherCore& window, SquareLauncher& launcher);
|
|
|
|
Q_INVOKABLE void checkGateStatus(LoginInformation* info);
|
|
|
|
void bootCheck(const LoginInformation& info);
|
|
|
|
private:
|
|
QProgressDialog* dialog;
|
|
|
|
LauncherCore& window;
|
|
SquareLauncher& launcher;
|
|
}; |