2021-11-01 09:54:58 -04:00
|
|
|
#pragma once
|
|
|
|
|
2022-03-17 11:41:02 -04:00
|
|
|
#include <QProgressDialog>
|
2021-11-23 15:34:23 -05:00
|
|
|
#include "launchercore.h"
|
2021-11-01 09:54:58 -04:00
|
|
|
|
|
|
|
class SquareLauncher;
|
|
|
|
|
|
|
|
class SquareBoot : public QObject {
|
|
|
|
public:
|
2021-11-23 15:34:23 -05:00
|
|
|
SquareBoot(LauncherCore& window, SquareLauncher& launcher);
|
2021-11-01 09:54:58 -04:00
|
|
|
|
|
|
|
void bootCheck(LoginInformation& info);
|
|
|
|
|
|
|
|
private:
|
2022-03-17 11:41:02 -04:00
|
|
|
QProgressDialog* dialog;
|
|
|
|
|
2021-11-23 15:34:23 -05:00
|
|
|
LauncherCore& window;
|
2021-11-01 09:54:58 -04:00
|
|
|
SquareLauncher& launcher;
|
|
|
|
};
|