mirror of
https://github.com/redstrate/Astra.git
synced 2025-04-21 04:07:46 +00:00
19 lines
371 B
C
19 lines
371 B
C
|
#pragma once
|
||
|
|
||
|
#include <QDialog>
|
||
|
#include <QListWidget>
|
||
|
#include <QComboBox>
|
||
|
#include <QLineEdit>
|
||
|
#include <QCheckBox>
|
||
|
#include <QLabel>
|
||
|
#include <QPushButton>
|
||
|
|
||
|
class LauncherCore;
|
||
|
class LauncherWindow;
|
||
|
struct ProfileSettings;
|
||
|
|
||
|
class GamescopeSettingsWindow : public QDialog {
|
||
|
public:
|
||
|
GamescopeSettingsWindow(ProfileSettings& settings, QWidget* parent = nullptr);
|
||
|
};
|