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

17 lines
361 B
C
Raw Normal View History

#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;
};