1
Fork 0
mirror of https://github.com/redstrate/Astra.git synced 2025-04-21 20:27:45 +00:00
astra/launcher/desktop/include/desktopinterface.h

17 lines
No EOL
370 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:
explicit DesktopInterface(LauncherCore& core);
private:
LauncherWindow* window = nullptr;
AutoLoginWindow* autoLoginWindow = nullptr;
};