qmlfrontend/main.cpp
author Wuzzy <Wuzzy2@mail.ru>
Wed, 19 Sep 2018 09:45:45 +0200
changeset 13792 5d46b4fae757
parent 12854 28cb18c5e712
child 12857 90f927b4b9e1
child 14143 745c73e0e644
permissions -rw-r--r--
Ignore gmTimer after attack or hog is no longer controlled You were able to set the timer after you threw a grenade

#include <QGuiApplication>
#include <QQmlApplicationEngine>

int main(int argc, char *argv[])
{
  QCoreApplication::setAttribute(Qt::AA_EnableHighDpiScaling);
  QGuiApplication app(argc, argv);

  QQmlApplicationEngine engine;
  engine.load(QUrl(QLatin1String("qrc:/main.qml")));
  if (engine.rootObjects().isEmpty())
    return -1;

  return app.exec();
}