fort/src/ui/main.cpp

9 lines
126 B
C++
Raw Normal View History

2017-08-23 13:52:22 +00:00
#include <QGuiApplication>
int main(int argc, char *argv[])
{
QGuiApplication app(argc, argv);
return app.exec();
}