mirror of
https://github.com/redstrate/Astra.git
synced 2025-04-25 22:07:44 +00:00
16 lines
288 B
C
16 lines
288 B
C
![]() |
#pragma once
|
||
|
|
||
|
#include "xivlauncher.h"
|
||
|
|
||
|
class SquareLauncher;
|
||
|
|
||
|
class SquareBoot : public QObject {
|
||
|
public:
|
||
|
SquareBoot(LauncherWindow& window, SquareLauncher& launcher);
|
||
|
|
||
|
void bootCheck(LoginInformation& info);
|
||
|
|
||
|
private:
|
||
|
LauncherWindow& window;
|
||
|
SquareLauncher& launcher;
|
||
|
};
|