mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-06-04 17:53:17 +00:00
21 lines
No EOL
353 B
C++
21 lines
No EOL
353 B
C++
// 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;
|
|
}; |