About Window (#458)

This commit is contained in:
¥IGA 2024-08-17 18:13:37 +02:00 committed by GitHub
parent ecf7f36763
commit 3be2e4b2b8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 164 additions and 1 deletions

21
src/qt_gui/about_dialog.h Normal file
View file

@ -0,0 +1,21 @@
// SPDX-FileCopyrightText: Copyright 2024 shadPS4 Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later
#pragma once
#include <QDialog>
namespace Ui {
class AboutDialog;
}
class AboutDialog : public QDialog {
Q_OBJECT
public:
explicit AboutDialog(QWidget* parent = nullptr);
~AboutDialog();
private:
Ui::AboutDialog* ui;
};