1
Fork 0
mirror of https://github.com/redstrate/Astra.git synced 2025-04-21 12:17:45 +00:00
astra/launcher/core/include/squareboot.h

21 lines
No EOL
405 B
C++

#pragma once
#include <QProgressDialog>
#include "launchercore.h"
class SquareLauncher;
class SquareBoot : public QObject {
public:
SquareBoot(LauncherCore& window, SquareLauncher& launcher);
void checkGateStatus(const LoginInformation& info);
void bootCheck(const LoginInformation& info);
private:
QProgressDialog* dialog;
LauncherCore& window;
SquareLauncher& launcher;
};