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

23 lines
440 B
C
Raw Normal View History

2021-11-01 09:54:58 -04:00
#pragma once
#include "patcher.h"
2021-11-01 09:54:58 -04:00
class SquareLauncher;
class LauncherCore;
struct LoginInformation;
2021-11-01 09:54:58 -04:00
class SquareBoot : public QObject {
Q_OBJECT
2021-11-01 09:54:58 -04:00
public:
SquareBoot(LauncherCore& window, SquareLauncher& launcher);
2021-11-01 09:54:58 -04:00
Q_INVOKABLE void checkGateStatus(LoginInformation* info);
void bootCheck(const LoginInformation& info);
2021-11-01 09:54:58 -04:00
private:
Patcher* patcher = nullptr;
LauncherCore& window;
2021-11-01 09:54:58 -04:00
SquareLauncher& launcher;
};