mirror of
https://github.com/RetroDECK/Duckstation.git
synced 2024-11-24 14:45:41 +00:00
18 lines
242 B
C
18 lines
242 B
C
|
#pragma once
|
||
|
|
||
|
#include "ui_aboutdialog.h"
|
||
|
#include <QtWidgets/QDialog>
|
||
|
|
||
|
class AboutDialog final : public QDialog
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
explicit AboutDialog(QWidget* parent = nullptr);
|
||
|
~AboutDialog();
|
||
|
|
||
|
private:
|
||
|
Ui::AboutDialog m_ui;
|
||
|
|
||
|
};
|