mirror of
https://github.com/tnodir/fort
synced 2024-11-17 18:47:54 +00:00
9 lines
126 B
C++
9 lines
126 B
C++
#include <QGuiApplication>
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
QGuiApplication app(argc, argv);
|
|
|
|
return app.exec();
|
|
}
|