About dialog displays version numbers and handy links

This commit is contained in:
Rukai
2016-02-11 22:59:44 +11:00
parent 585761a456
commit 77efb2d134
7 changed files with 111 additions and 2 deletions

View File

@ -0,0 +1,15 @@
// Copyright 2016 Dolphin Emulator Project
// Licensed under GPLv2+
// Refer to the license.txt file included.
#pragma once
#include <QDialog>
class AboutDialog final : public QDialog
{
Q_OBJECT
public:
explicit AboutDialog(QWidget* parent = nullptr);
};