mirror of
https://github.com/tnodir/fort
synced 2024-11-17 15:55:55 +00:00
15 lines
276 B
C++
15 lines
276 B
C++
#include <QGuiApplication>
|
|
|
|
#include "fortmanager.h"
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
QGuiApplication::setAttribute(Qt::AA_EnableHighDpiScaling);
|
|
QGuiApplication app(argc, argv);
|
|
|
|
FortManager fortManager;
|
|
fortManager.showWindow();
|
|
|
|
return app.exec();
|
|
}
|