PrimeWorldEditor/src/Editor/TestDialog.cpp

15 lines
218 B
C++
Raw Normal View History

#include "TestDialog.h"
#include "ui_TestDialog.h"
2016-03-27 19:09:38 +00:00
TestDialog::TestDialog(QWidget *pParent)
: QDialog(pParent)
, ui(new Ui::TestDialog)
{
ui->setupUi(this);
}
TestDialog::~TestDialog()
{
delete ui;
}