1
Fork 0
mirror of https://github.com/redstrate/Astra.git synced 2025-04-20 19:57:45 +00:00
astra/src/settingswindow.h

15 lines
256 B
C
Raw Normal View History

2021-11-01 13:14:00 -04:00
#pragma once
#include <QWidget>
class LauncherWindow;
class SettingsWindow : public QWidget {
public:
SettingsWindow(LauncherWindow& window, QWidget* parent = nullptr);
private:
void openPath(const QString path);
2021-11-01 13:14:00 -04:00
LauncherWindow& window;
};