mirror of
https://github.com/redstrate/Astra.git
synced 2025-04-23 04:57:44 +00:00
20 lines
454 B
C++
20 lines
454 B
C++
#pragma once
|
|
|
|
#include <QCheckBox>
|
|
#include <QComboBox>
|
|
#include <QDialog>
|
|
#include <QLabel>
|
|
#include <QLineEdit>
|
|
#include <QListWidget>
|
|
#include <QPushButton>
|
|
|
|
#include "virtualdialog.h"
|
|
|
|
class LauncherCore;
|
|
class LauncherWindow;
|
|
struct ProfileSettings;
|
|
|
|
class GamescopeSettingsWindow : public VirtualDialog {
|
|
public:
|
|
GamescopeSettingsWindow(DesktopInterface& interface, ProfileSettings& settings, LauncherCore& core, QWidget* parent = nullptr);
|
|
};
|