1
Fork 0
mirror of https://github.com/redstrate/Astra.git synced 2025-04-25 22:07:44 +00:00
astra/src/squareboot.h

16 lines
288 B
C
Raw Normal View History

2021-11-01 09:54:58 -04:00
#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;
};