mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-01-03 23:30:02 +01:00
24 lines
357 B
C++
24 lines
357 B
C++
#pragma once
|
|
|
|
#include <QDialog>
|
|
|
|
namespace Ui
|
|
{
|
|
class welcome_dialog;
|
|
}
|
|
|
|
class gui_settings;
|
|
|
|
class welcome_dialog : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit welcome_dialog(std::shared_ptr<gui_settings> gui_settings, QWidget* parent = nullptr);
|
|
~welcome_dialog();
|
|
|
|
private:
|
|
Ui::welcome_dialog *ui;
|
|
std::shared_ptr<gui_settings> m_gui_settings;
|
|
};
|