Add 'About Porymap' window that contains useful information about the program

This commit is contained in:
Marcus Huderle
2019-01-08 10:28:20 -06:00
parent 8317dc2276
commit b469cc047f
8 changed files with 218 additions and 2 deletions

19
include/ui/aboutporymap.h Normal file
View File

@@ -0,0 +1,19 @@
#ifndef ABOUTPORYMAP_H
#define ABOUTPORYMAP_H
#include <QMainWindow>
namespace Ui {
class AboutPorymap;
}
class AboutPorymap : public QMainWindow
{
public:
explicit AboutPorymap(QWidget *parent = nullptr);
~AboutPorymap();
private:
Ui::AboutPorymap *ui;
};
#endif // ABOUTPORYMAP_H