Play-/Source/ui_unix/main.cpp

12 lines
217 B
C++
Raw Normal View History

2016-09-06 00:12:56 +01:00
#include <QApplication>
#include "mainwindow.h"
2016-09-06 00:12:56 +01:00
2018-04-30 21:01:23 +01:00
int main(int argc, char* argv[])
2016-09-06 00:12:56 +01:00
{
QApplication::setAttribute(Qt::AA_EnableHighDpiScaling);
2018-04-30 21:01:23 +01:00
QApplication a(argc, argv);
MainWindow w;
w.show();
return a.exec();
2016-09-06 00:12:56 +01:00
}