mirror of
https://github.com/AxioDL/PrimeWorldEditor.git
synced 2025-12-19 01:46:27 +00:00
Finalized the About dialog, made it accessible through the start window
This commit is contained in:
14
src/Editor/CAboutDialog.cpp
Normal file
14
src/Editor/CAboutDialog.cpp
Normal file
@@ -0,0 +1,14 @@
|
||||
#include "CAboutDialog.h"
|
||||
#include "ui_CAboutDialog.h"
|
||||
|
||||
CAboutDialog::CAboutDialog(QWidget *parent) :
|
||||
QDialog(parent),
|
||||
ui(new Ui::CAboutDialog)
|
||||
{
|
||||
ui->setupUi(this);
|
||||
}
|
||||
|
||||
CAboutDialog::~CAboutDialog()
|
||||
{
|
||||
delete ui;
|
||||
}
|
||||
Reference in New Issue
Block a user