2017-09-28 12:52:06 +00:00
|
|
|
#include <QtWidgets/QApplication>
|
|
|
|
#include <QDebug>
|
2016-03-18 14:21:45 +00:00
|
|
|
#include "mainwindow.h"
|
|
|
|
|
|
|
|
int main(int argc, char *argv[])
|
|
|
|
{
|
|
|
|
QApplication a(argc, argv);
|
2017-09-28 12:52:06 +00:00
|
|
|
|
2021-07-01 10:04:11 +00:00
|
|
|
Q_INIT_RESOURCE(examples);
|
2021-06-29 03:46:30 +00:00
|
|
|
Q_INIT_RESOURCE(material_res);
|
2017-09-28 21:28:08 +00:00
|
|
|
|
2017-09-28 12:52:06 +00:00
|
|
|
MainWindow window;
|
|
|
|
window.show();
|
2016-03-18 14:21:45 +00:00
|
|
|
|
|
|
|
return a.exec();
|
|
|
|
}
|