mirror of
https://github.com/AxioDL/PrimeWorldEditor.git
synced 2025-05-30 03:01:32 +00:00
15 lines
229 B
C++
15 lines
229 B
C++
#include "CAboutDialog.h"
|
|
#include "ui_CAboutDialog.h"
|
|
|
|
CAboutDialog::CAboutDialog(QWidget *parent) :
|
|
QDialog(parent),
|
|
ui(new Ui::CAboutDialog)
|
|
{
|
|
ui->setupUi(this);
|
|
}
|
|
|
|
CAboutDialog::~CAboutDialog()
|
|
{
|
|
delete ui;
|
|
}
|