1
Fork 0
mirror of https://github.com/redstrate/Astra.git synced 2025-04-25 13:57:45 +00:00
astra/src/squareboot.h
2021-11-01 09:54:58 -04:00

16 lines
No EOL
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;
};