teleport/client/tp-player/main.cpp

16 lines
312 B
C++
Raw Normal View History

2019-09-02 21:40:52 +00:00
#include "mainwindow.h"
#include <QApplication>
int main(int argc, char *argv[])
{
//#if (QT_VERSION >= QT_VERSION_CHECK(5, 6, 0))
// QCoreApplication::setAttribute(Qt::AA_EnableHighDpiScaling);
//#endif
QApplication a(argc, argv);
MainWindow w;
w.show();
return a.exec();
}