1
Fork 0
mirror of https://github.com/redstrate/Astra.git synced 2025-04-20 11:47:46 +00:00
astra/launcher/core/include/squareboot.h
Joshua Goins 55aaf7c1f6 Make tablet interface functional
Right now OTP and other stuff is missing for an actual login, but it
calls!
2022-06-08 13:55:15 -04:00

23 lines
No EOL
443 B
C++

#pragma once
#include <QProgressDialog>
class SquareLauncher;
class LauncherCore;
struct LoginInformation;
class SquareBoot : public QObject {
Q_OBJECT
public:
SquareBoot(LauncherCore& window, SquareLauncher& launcher);
Q_INVOKABLE void checkGateStatus(LoginInformation* info);
void bootCheck(const LoginInformation& info);
private:
QProgressDialog* dialog;
LauncherCore& window;
SquareLauncher& launcher;
};