mirror of
https://github.com/tnodir/fort
synced 2024-11-17 15:45:49 +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();
|
||
|
}
|