Hello world! First commit.

This commit is contained in:
Ernst 2018-08-31 18:04:15 -07:00
commit 263c65ac46
2435 changed files with 30491 additions and 0 deletions

14
assetlist.cpp Normal file
View file

@ -0,0 +1,14 @@
#include "assetlist.h"
#include "ui_assetlist.h"
AssetList::AssetList(QWidget *parent) :
QDockWidget(parent),
ui(new Ui::AssetList)
{
ui->setupUi(this);
}
AssetList::~AssetList()
{
delete ui;
}