mirror of
https://github.com/redstrate/Astra.git
synced 2025-04-21 20:27:45 +00:00
19 lines
No EOL
342 B
C++
19 lines
No EOL
342 B
C++
#pragma once
|
|
|
|
#include <QProgressDialog>
|
|
#include "launchercore.h"
|
|
|
|
class SquareLauncher;
|
|
|
|
class SquareBoot : public QObject {
|
|
public:
|
|
SquareBoot(LauncherCore& window, SquareLauncher& launcher);
|
|
|
|
void bootCheck(LoginInformation& info);
|
|
|
|
private:
|
|
QProgressDialog* dialog;
|
|
|
|
LauncherCore& window;
|
|
SquareLauncher& launcher;
|
|
}; |