353d932147
problems: it is not correctly displayed (vertice and what happend to the texture?) todo: improve the import, remove unused garbage, add move and zoom function
12 lines
177 B
C++
12 lines
177 B
C++
#include "Header\MainWindow.h"
|
|
#include <QtWidgets/QApplication>
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
QApplication a(argc, argv);
|
|
|
|
MainWindow w;
|
|
w.show();
|
|
return a.exec();
|
|
}
|