mirror of
https://github.com/redstrate/Astra.git
synced 2025-04-20 19:57:45 +00:00
13 lines
216 B
C
13 lines
216 B
C
![]() |
#pragma once
|
||
|
|
||
|
#include <QWidget>
|
||
|
|
||
|
class LauncherWindow;
|
||
|
|
||
|
class SettingsWindow : public QWidget {
|
||
|
public:
|
||
|
SettingsWindow(LauncherWindow& window, QWidget* parent = nullptr);
|
||
|
|
||
|
private:
|
||
|
LauncherWindow& window;
|
||
|
};
|