1
Fork 0
mirror of https://github.com/redstrate/Astra.git synced 2025-04-20 11:47:46 +00:00
astra/launcher/desktop/include/desktopinterface.h
Joshua Goins d28ed71e87 Add a basic auto-login window
Soon, you'll be able to store an OTP secret with Astra :-)

Also, the cancel button is broken ATM, so you have to manually turn the
feature off in the config.
2022-08-31 17:14:54 -04:00

17 lines
No EOL
361 B
C++

#pragma once
#include "launcherwindow.h"
#include "autologinwindow.h"
/*
* The desktop, mouse and keyboard-driven interface for Astra. Primarily meant
* for regular desktop usage.
*/
class DesktopInterface {
public:
DesktopInterface(LauncherCore& core);
private:
LauncherWindow* window = nullptr;
AutoLoginWindow* autoLoginWindow = nullptr;
};