mirror of
https://github.com/AxioDL/PrimeWorldEditor.git
synced 2025-05-31 11:41:20 +00:00
15 lines
215 B
C++
15 lines
215 B
C++
#include "WCreateTab.h"
|
|
#include "ui_WCreateTab.h"
|
|
|
|
WCreateTab::WCreateTab(QWidget *parent) :
|
|
QWidget(parent),
|
|
ui(new Ui::WCreateTab)
|
|
{
|
|
ui->setupUi(this);
|
|
}
|
|
|
|
WCreateTab::~WCreateTab()
|
|
{
|
|
delete ui;
|
|
}
|