Implement "About" dialog
This commit is contained in:
parent
feae1c4c32
commit
c493bd9cc9
8 changed files with 250 additions and 3 deletions
23
src/yuzu/about_dialog.h
Normal file
23
src/yuzu/about_dialog.h
Normal file
|
@ -0,0 +1,23 @@
|
|||
// Copyright 2018 yuzu Emulator Project
|
||||
// Licensed under GPLv2 or any later version
|
||||
// Refer to the license.txt file included.
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <memory>
|
||||
#include <QDialog>
|
||||
|
||||
namespace Ui {
|
||||
class AboutDialog;
|
||||
}
|
||||
|
||||
class AboutDialog : public QDialog {
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
explicit AboutDialog(QWidget* parent);
|
||||
~AboutDialog();
|
||||
|
||||
private:
|
||||
std::unique_ptr<Ui::AboutDialog> ui;
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue