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