mirror of
https://github.com/redstrate/Astra.git
synced 2025-04-23 12:57:45 +00:00
15 lines
No EOL
284 B
C++
15 lines
No EOL
284 B
C++
#pragma once
|
|
|
|
#include "launcherwindow.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;
|
|
}; |