Implement "About" dialog

This commit is contained in:
spycrab
2018-01-14 19:15:45 +01:00
parent feae1c4c32
commit c493bd9cc9
8 changed files with 250 additions and 3 deletions

23
src/yuzu/about_dialog.h Normal file
View 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;
};