15 lines
257 B
C++
15 lines
257 B
C++
|
#include "maintexturesform.h"
|
||
|
#include "ui_maintexturesform.h"
|
||
|
|
||
|
MainTexturesForm::MainTexturesForm(QWidget *parent) :
|
||
|
QWidget(parent),
|
||
|
ui(new Ui::MainTexturesForm)
|
||
|
{
|
||
|
ui->setupUi(this);
|
||
|
}
|
||
|
|
||
|
MainTexturesForm::~MainTexturesForm()
|
||
|
{
|
||
|
delete ui;
|
||
|
}
|