mirror of
https://github.com/redstrate/Astra.git
synced 2025-04-20 11:47:46 +00:00
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.
17 lines
No EOL
361 B
C++
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;
|
|
}; |