mirror of
https://github.com/AxioDL/PrimeWorldEditor.git
synced 2025-12-17 17:05:37 +00:00
Mass refactoring part 1/2: establishing multiple subprojects, moving source files to their new location, adding resources/templates to version control
This commit is contained in:
14
src/Editor/WorldEditor/WCreateTab.cpp
Normal file
14
src/Editor/WorldEditor/WCreateTab.cpp
Normal file
@@ -0,0 +1,14 @@
|
||||
#include "WCreateTab.h"
|
||||
#include "ui_WCreateTab.h"
|
||||
|
||||
WCreateTab::WCreateTab(QWidget *parent) :
|
||||
QWidget(parent),
|
||||
ui(new Ui::WCreateTab)
|
||||
{
|
||||
ui->setupUi(this);
|
||||
}
|
||||
|
||||
WCreateTab::~WCreateTab()
|
||||
{
|
||||
delete ui;
|
||||
}
|
||||
Reference in New Issue
Block a user