qmlfrontend/main.cpp
author Wuzzy <Wuzzy2@mail.ru>
Tue, 28 Aug 2018 05:46:33 +0200
changeset 13710 0da36902e5b6
parent 12854 28cb18c5e712
child 12857 90f927b4b9e1
child 14143 745c73e0e644
permissions -rw-r--r--
Space Invasion: Continue playing rounds in case the teams are tied at the end Rules in case of a tie: 1) Eliminate all teams not tied for the lead 2) Play another round with the remaining teams 3) Check for the winner again at the end of that round. If there's another tie, repeat the procedure
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
12854
28cb18c5e712 Add new qmlfrontend project template
unc0rr
parents:
diff changeset
     1
#include <QGuiApplication>
28cb18c5e712 Add new qmlfrontend project template
unc0rr
parents:
diff changeset
     2
#include <QQmlApplicationEngine>
28cb18c5e712 Add new qmlfrontend project template
unc0rr
parents:
diff changeset
     3
28cb18c5e712 Add new qmlfrontend project template
unc0rr
parents:
diff changeset
     4
int main(int argc, char *argv[])
28cb18c5e712 Add new qmlfrontend project template
unc0rr
parents:
diff changeset
     5
{
28cb18c5e712 Add new qmlfrontend project template
unc0rr
parents:
diff changeset
     6
  QCoreApplication::setAttribute(Qt::AA_EnableHighDpiScaling);
28cb18c5e712 Add new qmlfrontend project template
unc0rr
parents:
diff changeset
     7
  QGuiApplication app(argc, argv);
28cb18c5e712 Add new qmlfrontend project template
unc0rr
parents:
diff changeset
     8
28cb18c5e712 Add new qmlfrontend project template
unc0rr
parents:
diff changeset
     9
  QQmlApplicationEngine engine;
28cb18c5e712 Add new qmlfrontend project template
unc0rr
parents:
diff changeset
    10
  engine.load(QUrl(QLatin1String("qrc:/main.qml")));
28cb18c5e712 Add new qmlfrontend project template
unc0rr
parents:
diff changeset
    11
  if (engine.rootObjects().isEmpty())
28cb18c5e712 Add new qmlfrontend project template
unc0rr
parents:
diff changeset
    12
    return -1;
28cb18c5e712 Add new qmlfrontend project template
unc0rr
parents:
diff changeset
    13
28cb18c5e712 Add new qmlfrontend project template
unc0rr
parents:
diff changeset
    14
  return app.exec();
28cb18c5e712 Add new qmlfrontend project template
unc0rr
parents:
diff changeset
    15
}