buckshot/buckshot/main.cpp

14 lines
234 B
C++
Raw Permalink Normal View History

2016-12-06 02:12:44 +00:00
#include "mainwindow.h"
#include <QApplication>
int main(int argc, char *argv[])
{
2019-12-18 15:40:35 +00:00
QApplication::setAttribute(Qt::AA_EnableHighDpiScaling);
2016-12-06 02:12:44 +00:00
QApplication a(argc, argv);
MainWindow w;
w.show();
return a.exec();
}