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

16 lines
285 B
C
Raw Normal View History

2021-11-01 09:54:58 -04:00
#pragma once
#include "launchercore.h"
2021-11-01 09:54:58 -04:00
class SquareLauncher;
class SquareBoot : public QObject {
public:
SquareBoot(LauncherCore& window, SquareLauncher& launcher);
2021-11-01 09:54:58 -04:00
void bootCheck(LoginInformation& info);
private:
LauncherCore& window;
2021-11-01 09:54:58 -04:00
SquareLauncher& launcher;
};