mirror of
https://github.com/redstrate/Astra.git
synced 2025-04-20 19:57:45 +00:00
Yes it's finally here! It's been tested to update the game from the base 2012 version all the way up to patch 6.18. This also works across all expansions, and the previous boot patches that were supported before. However, the patcher dialog is in need of an update, as patching happens on the same thread so the entire application freezes.
23 lines
No EOL
440 B
C++
23 lines
No EOL
440 B
C++
#pragma once
|
|
|
|
#include "patcher.h"
|
|
|
|
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:
|
|
Patcher* patcher = nullptr;
|
|
|
|
LauncherCore& window;
|
|
SquareLauncher& launcher;
|
|
}; |